[Python-checkins] cpython (2.7): Closes #23244: fix typo. Thanks Mayank Tripathi for the patch.

georg.brandl python-checkins at python.org
Thu Jan 15 08:16:50 CET 2015


https://hg.python.org/cpython/rev/25a1ce2a6f9b
changeset:   94157:25a1ce2a6f9b
branch:      2.7
parent:      94152:7972b18b6e42
user:        Georg Brandl <georg at python.org>
date:        Thu Jan 15 08:16:01 2015 +0100
summary:
  Closes #23244: fix typo. Thanks Mayank Tripathi for the patch.

files:
  Doc/glossary.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/glossary.rst b/Doc/glossary.rst
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -284,7 +284,7 @@
    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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list