diff options
author | Georg Brandl <georg@python.org> | 2015-01-15 07:16:01 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2015-01-15 07:16:01 (GMT) |
commit | caa12dab690aace565a53d17bfed1eea9ed5d9cd (patch) | |
tree | fc0c718a53fa7cf699f90c96ff6ea97c576dcd83 /Doc/glossary.rst | |
parent | 8a123292818a88d334068249792539dab0656f4d (diff) | |
download | cpython-caa12dab690aace565a53d17bfed1eea9ed5d9cd.zip cpython-caa12dab690aace565a53d17bfed1eea9ed5d9cd.tar.gz cpython-caa12dab690aace565a53d17bfed1eea9ed5d9cd.tar.bz2 |
Closes #23244: fix typo. Thanks Mayank Tripathi for the patch.
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 f4bee4e..1de86ef 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -292,7 +292,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 |