diff options
author | Georg Brandl <georg@python.org> | 2010-02-19 09:10:15 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-02-19 09:10:15 (GMT) |
commit | 4c247d639fb3b0732080adce7d6c101f5bff05fd (patch) | |
tree | d8959d393b85144af319604c0888a4c2eaf70fd1 | |
parent | 6be85c52eb47c28fff69f3d8a04eda86b79a1eb0 (diff) | |
download | cpython-4c247d639fb3b0732080adce7d6c101f5bff05fd.zip cpython-4c247d639fb3b0732080adce7d6c101f5bff05fd.tar.gz cpython-4c247d639fb3b0732080adce7d6c101f5bff05fd.tar.bz2 |
#5341: fix parenthesis placement.
-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 12396a7..8ec9e61 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -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 |