From 9da948ef1de214799629cb19dbaf71c262ccaed2 Mon Sep 17 00:00:00 2001 From: Carl Fredrik Samson Date: Fri, 15 Jan 2021 16:26:37 +0100 Subject: [PATCH] reworded paragraph re #36 --- src/1_futures_in_rust.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/1_futures_in_rust.md b/src/1_futures_in_rust.md index 4145ac1..e0ffef2 100644 --- a/src/1_futures_in_rust.md +++ b/src/1_futures_in_rust.md @@ -78,7 +78,8 @@ scheduler and then resume execution again where it left off at a later point. In contrast to leaf futures, these kind of futures do not themselves represent an I/O resource. When we poll them they will run until they get to a -leaf-future which returns `Pending` and then yield control to the scheduler. +leaf-future which returns `Pending` and then yield control to the scheduler +(which is a part of what we call the runtime). ## Runtimes