File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -228,8 +228,8 @@ We'll use the following code example to illustrate::
228228In this example, imagine the event loop has passed control to the start of the
229229coroutine ``plant_a_tree() ``.
230230As 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.
233233And then, the instruction cedes control to the event loop.
234234Some time later, the event loop will pass control to ``dig_the_hole_task ``
235235and the task will finish whatever it needs to do.
You can’t perform that action at this time.
0 commit comments