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 7e48175 commit f881bfdCopy full SHA for f881bfd
1 file changed
Doc/howto/a-conceptual-overview-of-asyncio.rst
@@ -323,8 +323,9 @@ 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 ``coro_b()``
327
-and then ``coro_a()`` before resuming the coroutine ``main()``.
+The event loop then proceeds through its backlog of work, calling the task
+which wraps ``coro_b()`` and then ``coro_a()`` before resuming the coroutine
328
+``main()``.
329
330
.. code-block:: none
331
0 commit comments