diff options
author | Kyle Stanley <aeros167@gmail.com> | 2019-10-01 00:12:21 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2019-10-01 00:12:21 (GMT) |
commit | e407013089259e4c0b271703e1975bbcd578a2d5 (patch) | |
tree | fd024be219b30a36f50f5cbe166fbeca5f511822 /Doc/glossary.rst | |
parent | aca8c406ada3bb547765b262bed3ac0cc6be8dd3 (diff) | |
download | cpython-e407013089259e4c0b271703e1975bbcd578a2d5.zip cpython-e407013089259e4c0b271703e1975bbcd578a2d5.tar.gz cpython-e407013089259e4c0b271703e1975bbcd578a2d5.tar.bz2 |
Fix and improve `asyncio.run()` docs (GH-16403)
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index e601e8b..9ce0357 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -247,7 +247,7 @@ Glossary Fortran contiguous arrays, the first index varies the fastest. coroutine - Coroutines is a more generalized form of subroutines. Subroutines are + Coroutines are a more generalized form of subroutines. Subroutines are entered at one point and exited at another point. Coroutines can be entered, exited, and resumed at many different points. They can be implemented with the :keyword:`async def` statement. See also |