Skip to content

Commit c31f3c5

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ As usual, the event loop cycles through its queue of tasks, giving them control
425425
and receiving control back when they pause or finish.
426426
The ``watcher_task``, which runs the coroutine: ``_sleep_watcher(...)`` will be
427427
invoked once per full cycle of the event loop's queue.
428-
On each resumption, it'll check the time and if not enough has elapsed, it'll
428+
On each resumption, it'll check the time and if not enough has elapsed, then it'll
429429
pause once again and return control to the event loop.
430430
Eventually, enough time will have elapsed, and ``_sleep_watcher(...)`` will
431431
mark the future as done, and then itself finish too by breaking out of the

0 commit comments

Comments
 (0)