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 f881bfd commit 2227e4bCopy full SHA for 2227e4b
Doc/howto/a-conceptual-overview-of-asyncio.rst
@@ -323,8 +323,8 @@ invocations before ``coro_b()``'s output:
323
If we change ``await coro_a()`` to ``await asyncio.create_task(coro_a())``, the
324
behavior changes.
325
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
+The event loop then proceeds through its backlog of work, calling ``task_b``
+and then the task which wraps ``coro_a()`` before resuming the coroutine
328
``main()``.
329
330
.. code-block:: none
0 commit comments