Skip to content

Commit 7a4eebe

Browse files
committed
grammar fix.
1 parent 1934aad commit 7a4eebe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ As seen above, the coroutine creates a task and then awaits it.
231231
The ``await dig_the_hole_task`` instruction adds a callback, which will resume
232232
``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.
234-
Some time later, the event loop will pass control to the ``dig_the_hole_task``
234+
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.
236236
Once the task finishes, it will add its various callbacks to the event loop,
237237
in this case, a call to resume ``plant_a_tree()``.

0 commit comments

Comments
 (0)