Fix typo re #36

This commit is contained in:
Carl Fredrik Samson
2021-01-15 16:08:32 +01:00
parent 94cf575866
commit 2889b9d9a4

View File

@@ -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