summaryrefslogtreecommitdiffstats
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorSebastián Ramírez <tiangolo@gmail.com>2018-11-15 05:51:56 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-11-15 05:51:56 (GMT)
commit25221b328339fb1726b58742e91b6e49c178023a (patch)
tree8fc3829f06f0c4f3c5d618ee4d37cc5a0a9a777d /Doc/glossary.rst
parentbfb855bef6b428d639693caaf4e4c84cbb8a2f51 (diff)
downloadcpython-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.rst4
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