Skip to content

Commit dca3d38

Browse files
Update Doc/howto/a-conceptual-overview-of-asyncio.rst
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
1 parent 34f3335 commit dca3d38

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
@@ -276,7 +276,7 @@ In this case, that's back to ``... = coroutine.send(None)`` on line 16.
276276
The coroutine is resumed via the ``coroutine.send(42)`` call on line 21.
277277
The coroutine picks back up from where it ``yield``\ ed (or paused) on line 3
278278
and executes the remaining statements in its body.
279-
When a coroutine finishes it raises a :exc:`StopIteration` exception with the
279+
When a coroutine finishes, it raises a :exc:`StopIteration` exception with the
280280
return value attached to the exception.
281281

282282
::

0 commit comments

Comments
 (0)