From c898c47351623f6744b1a81c17dc84af553b5a24 Mon Sep 17 00:00:00 2001 From: Ibraheem Ahmed Date: Sat, 12 Jun 2021 12:04:17 -0400 Subject: [PATCH] fix typo --- src/7_finished_example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/7_finished_example.md b/src/7_finished_example.md index 2362369..25e24a1 100644 --- a/src/7_finished_example.md +++ b/src/7_finished_example.md @@ -210,7 +210,7 @@ impl Drop for Reactor { ## 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). +emphasize on what is part of the language (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.