Skip to content

Commit 34f3335

Browse files
committed
style nits
1 parent af9ba25 commit 34f3335

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ to specify the event loop.
175175
await
176176
=====
177177

178-
179178
:keyword:`await` is a Python keyword that's commonly used in one of two
180179
different ways::
181180

@@ -275,7 +274,7 @@ any yields it receives up the call-chain.
275274
In this case, that's back to ``... = coroutine.send(None)`` on line 16.
276275

277276
The coroutine is resumed via the ``coroutine.send(42)`` call on line 21.
278-
The coroutine picks back up from where it ``yield``\ ed (that is, paused) on line 3
277+
The coroutine picks back up from where it ``yield``\ ed (or paused) on line 3
279278
and executes the remaining statements in its body.
280279
When a coroutine finishes it raises a :exc:`StopIteration` exception with the
281280
return value attached to the exception.

0 commit comments

Comments
 (0)