summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-02-26 23:27:06 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-02-26 23:27:06 (GMT)
commit84424f1532818ed011a09255f373dc895f85e3ca (patch)
treeb9a9af7d60f4114520fab9414ad7f6048da8a521
parent9aeeffa9293f6deeb5c6aaec5d81071aa2e269f0 (diff)
downloadcpython-84424f1532818ed011a09255f373dc895f85e3ca.zip
cpython-84424f1532818ed011a09255f373dc895f85e3ca.tar.gz
cpython-84424f1532818ed011a09255f373dc895f85e3ca.tar.bz2
typo: __next__ -> next
-rw-r--r--Doc/library/collections.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 9b20360..c73fbff 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -52,7 +52,7 @@ ABC Inherits Abstract Methods Mixin
:class:`Container` ``__contains__``
:class:`Hashable` ``__hash__``
:class:`Iterable` ``__iter__``
-:class:`Iterator` :class:`Iterable` ``__next__`` ``__iter__``
+:class:`Iterator` :class:`Iterable` ``next`` ``__iter__``
:class:`Sized` ``__len__``
:class:`Callable` ``__call__``