summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2015-01-15 07:16:01 (GMT)
committerGeorg Brandl <georg@python.org>2015-01-15 07:16:01 (GMT)
commit7ff036022356e37740c67eb7804afcbe7ce2852c (patch)
tree16b312b93ab0aeecbf1b573dfc3c9e425ae3b68d
parent3700cc3ad66de1c7b98e1d1e73eeddaa24da1fa0 (diff)
downloadcpython-7ff036022356e37740c67eb7804afcbe7ce2852c.zip
cpython-7ff036022356e37740c67eb7804afcbe7ce2852c.tar.gz
cpython-7ff036022356e37740c67eb7804afcbe7ce2852c.tar.bz2
Closes #23244: fix typo. Thanks Mayank Tripathi for the patch.
-rw-r--r--Doc/glossary.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 5d69dd4..010fdf2 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -284,7 +284,7 @@ Glossary
generator
A function which returns an iterator. It looks like a normal function
except that it contains :keyword:`yield` statements for producing a series
- a values usable in a for-loop or that can be retrieved one at a time with
+ of values usable in a for-loop or that can be retrieved one at a time with
the :func:`next` function. Each :keyword:`yield` temporarily suspends
processing, remembering the location execution state (including local
variables and pending try-statements). When the generator resumes, it