From 2889b9d9a44da3809626c2926896a0f8bd18b1fb Mon Sep 17 00:00:00 2001 From: Carl Fredrik Samson Date: Fri, 15 Jan 2021 16:08:32 +0100 Subject: [PATCH] Fix typo re #36 --- src/1_futures_in_rust.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/1_futures_in_rust.md b/src/1_futures_in_rust.md index b03ab1c..0de9e08 100644 --- a/src/1_futures_in_rust.md +++ b/src/1_futures_in_rust.md @@ -80,8 +80,8 @@ In contrast to leaf futures, these kind of futures do not themselves represent an I/O resource. When we poll these futures they will run until they get to a leaf function that blocks, where it yields control to the scheduler and waits for some resource to signal us that it's ready so we can resume where we left -off. These futures can nest many non-leaf futures and and will keep -on going until they get to a leaf-future which returns `Pending` when polled. +off. These futures can nest many non-leaf futures and will keep on going until +they get to a leaf-future which returns `Pending` when polled. ## Runtimes