Skip to content

Commit daba131

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

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
@@ -421,8 +421,8 @@ This is effectively the same as calling ``asyncio.sleep(0)``, but this approach
421421
offers more clarity, not to mention it's somewhat cheating to use
422422
``asyncio.sleep`` when showcasing how to implement it!
423423

424-
The event loop, as usual, cycles through its queue of tasks, giving them control,
425-
and receiving control back when each task pauses or finishes.
424+
As usual, the event loop cycles through its queue of tasks, giving them control
425+
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.
428428
On each resumption, it'll check the time and if not enough has elapsed, it'll

0 commit comments

Comments
 (0)