From fa959ac9a194ef399f657d19b0b14efed35701b8 Mon Sep 17 00:00:00 2001 From: figurantpp Date: Thu, 6 May 2021 08:15:40 -0300 Subject: [PATCH] Fix #38 --- src/7_finished_example.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/7_finished_example.md b/src/7_finished_example.md index ba6c800..2362369 100644 --- a/src/7_finished_example.md +++ b/src/7_finished_example.md @@ -205,4 +205,13 @@ impl Drop for Reactor { self.handle.take().map(|h| h.join().unwrap()).unwrap(); } } -``` \ No newline at end of file +``` + +## A little side note + +The comments delimiting the Executor, `Future` implementation and Reactor, +emphasize on what is part of the langauge (Future and Waker) and what is not (runtime specifics). +Therefore, the comments associate the `Waker` with the `Future` implementation, +despite its strong relation with the Executor. + +