Skip to content

Commit 13843e9

Browse files
committed
Sentence case consistency.
1 parent 0692644 commit 13843e9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -251,9 +251,9 @@ different ways::
251251
In a crucial way, the behavior of ``await`` depends on the type of object
252252
being awaited.
253253

254-
^^^^^^^^^^
255-
await task
256-
^^^^^^^^^^
254+
^^^^^^^^^^^^^^
255+
Awaiting tasks
256+
^^^^^^^^^^^^^^
257257

258258
Awaiting a task will cede control from the current task or coroutine to
259259
the event loop.
@@ -286,9 +286,9 @@ This is a basic, yet reliable mental model.
286286
In practice, the control handoffs are slightly more complex, but not by much.
287287
In part 2, we'll walk through the details that make this possible.
288288

289-
^^^^^^^^^^^^^^^
290-
await coroutine
291-
^^^^^^^^^^^^^^^
289+
^^^^^^^^^^^^^^^^^^^
290+
Awaiting coroutines
291+
^^^^^^^^^^^^^^^^^^^
292292

293293
**Unlike tasks, awaiting a coroutine does not hand control back to the event
294294
loop!**

0 commit comments

Comments
 (0)