]> granicus.if.org Git - python/commitdiff
#5341: fix parenthesis placement.
authorGeorg Brandl <georg@python.org>
Fri, 19 Feb 2010 09:10:15 +0000 (09:10 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 19 Feb 2010 09:10:15 +0000 (09:10 +0000)
Doc/glossary.rst

index 12396a717212c89ca6f6b0bf004aedc180ad4db8..8ec9e613f4cca09ebf4793340facc1572742bffb 100644 (file)
@@ -315,7 +315,7 @@ Glossary
 
    iterator
       An object representing a stream of data.  Repeated calls to the iterator's
-      :meth:`__next__` (or passing it to the built-in function)  :func:`next`
+      :meth:`__next__` (or passing it to the built-in function :func:`next`)
       method return successive items in the stream.  When no more data are
       available a :exc:`StopIteration` exception is raised instead.  At this
       point, the iterator object is exhausted and any further calls to its