We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f7323d commit 99ac489Copy full SHA for 99ac489
1 file changed
Doc/howto/a-conceptual-overview-of-asyncio.rst
@@ -364,12 +364,12 @@ A homemade asyncio.sleep
364
========================
365
366
We'll go through an example of how you could leverage a future to create your
367
-own variant of asynchronous sleep (:func:`asyncio.sleep`).
+own variant of asynchronous sleep -- :func:`asyncio.sleep`.
368
369
-This snippet puts a few tasks on the event loops queue and then ``await``\ s a
370
-yet unknown coroutine wrapped in a task: ``async_sleep(3)``.
+This snippet puts a few tasks on the event loop's queue and then ``await``\ s a
+coroutine wrapped in a task: ``async_sleep(3)``.
371
We want that task to finish only after 3 seconds have elapsed, but without
372
-hogging control while waiting.
+preventing other tasks from running.
373
374
::
375
0 commit comments