Skip to content

Commit f881bfd

Browse files
committed
nit
1 parent 7e48175 commit f881bfd

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,9 @@ invocations before ``coro_b()``'s output:
323323
If we change ``await coro_a()`` to ``await asyncio.create_task(coro_a())``, the
324324
behavior changes.
325325
The coroutine ``main()`` cedes control to the event loop with that statement.
326-
The event loop then proceeds through its backlog of work, calling ``coro_b()``
327-
and then ``coro_a()`` before resuming the coroutine ``main()``.
326+
The event loop then proceeds through its backlog of work, calling the task
327+
which wraps ``coro_b()`` and then ``coro_a()`` before resuming the coroutine
328+
``main()``.
328329

329330
.. code-block:: none
330331

0 commit comments

Comments
 (0)