Skip to content

Commit dbbc0ab

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

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
@@ -219,7 +219,7 @@ Consider this program::
219219
asyncio.run(main())
220220

221221
The first statement in the coroutine ``main()`` creates ``task_b`` and places
222-
it on the event loops queue.
222+
it on the event loop's queue.
223223
Then, ``coro_a()`` is repeatedly ``await``\ ed. Control never cedes to the
224224
event loop which is why we see the output of all three ``coro_a()``
225225
invocations before ``coro_b()``'s output:

0 commit comments

Comments
 (0)