Skip to content

Commit feb8634

Browse files
Update Doc/howto/a-conceptual-overview-of-asyncio.rst
Co-authored-by: Peter Bierma <[email protected]>
1 parent 99ac489 commit feb8634

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/howto/a-conceptual-overview-of-asyncio.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,8 @@ preventing other tasks from running.
399399

400400
Below, we use a future to enable custom control over when that task will be marked
401401
as done.
402-
If ``future.set_result()``, the method responsible for marking that future as
403-
done, is never called, this task will never finish.
402+
If ``future.set_result()`` (the method responsible for marking that future as
403+
done) is never called, then this task will never finish.
404404
We've also enlisted the help of another task, which we'll see in a moment, that
405405
will monitor how much time has elapsed and accordingly call
406406
``future.set_result()``.

0 commit comments

Comments
 (0)