diff options
author | Sebastián RamÃrez <tiangolo@gmail.com> | 2018-11-15 05:51:56 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-11-15 05:51:56 (GMT) |
commit | 25221b328339fb1726b58742e91b6e49c178023a (patch) | |
tree | 8fc3829f06f0c4f3c5d618ee4d37cc5a0a9a777d /Doc/glossary.rst | |
parent | bfb855bef6b428d639693caaf4e4c84cbb8a2f51 (diff) | |
download | cpython-25221b328339fb1726b58742e91b6e49c178023a.zip cpython-25221b328339fb1726b58742e91b6e49c178023a.tar.gz cpython-25221b328339fb1726b58742e91b6e49c178023a.tar.bz2 |
Fix typo in asynchronous generator iterator documentation (GH-10542)
Remove an unnecessary "that":
... will execute that the body ... -> ... will execute the body ...
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index be20f2b..daa98a5 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -112,8 +112,8 @@ Glossary This is an :term:`asynchronous iterator` which when called using the :meth:`__anext__` method returns an awaitable object which will execute - that the body of the asynchronous generator function until the - next :keyword:`yield` expression. + the body of the asynchronous generator function until the next + :keyword:`yield` expression. Each :keyword:`yield` temporarily suspends processing, remembering the location execution state (including local variables and pending |