Skip to content

Commit a2fd17a

Browse files
committed
fix
1 parent 7a4eebe commit a2fd17a

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
@@ -228,8 +228,8 @@ We'll use the following code example to illustrate::
228228
In this example, imagine the event loop has passed control to the start of the
229229
coroutine ``plant_a_tree()``.
230230
As seen above, the coroutine creates a task and then awaits it.
231-
The ``await dig_the_hole_task`` instruction adds a callback, which will resume
232-
``plant_a_tree()``, to the ``dig_the_hole_task`` object's list of callbacks.
231+
The ``await dig_the_hole_task`` instruction adds a callback (which will resume
232+
``plant_a_tree()``) to the ``dig_the_hole_task`` object's list of callbacks.
233233
And then, the instruction cedes control to the event loop.
234234
Some time later, the event loop will pass control to ``dig_the_hole_task``
235235
and the task will finish whatever it needs to do.

0 commit comments

Comments
 (0)