Skip to content

Commit e982f9c

Browse files
Update Doc/howto/a-conceptual-overview-of-asyncio.rst
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
1 parent 00a1a68 commit e982f9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ On each resumption, it'll check the time and if not enough has elapsed, it'll
438438
pause once again and return control to the event loop.
439439
Eventually, enough time will have elapsed, and ``_sleep_watcher(...)`` will
440440
mark the future as done, and then itself finish too by breaking out of the
441-
infinite while loop.
441+
infinite ``while`` loop.
442442
Given this helper task is only invoked once per cycle of the event loop's queue,
443443
you'd be correct to note that this asynchronous sleep will sleep **at least**
444444
three seconds, rather than exactly three seconds.

0 commit comments

Comments
 (0)