Skip to content

Commit 2227e4b

Browse files
committed
nit
1 parent f881bfd commit 2227e4b

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
@@ -323,8 +323,8 @@ 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 the task
327-
which wraps ``coro_b()`` and then ``coro_a()`` before resuming the coroutine
326+
The event loop then proceeds through its backlog of work, calling ``task_b``
327+
and then the task which wraps ``coro_a()`` before resuming the coroutine
328328
``main()``.
329329

330330
.. code-block:: none

0 commit comments

Comments
 (0)