diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-26 23:27:06 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-26 23:27:06 (GMT) |
commit | 84424f1532818ed011a09255f373dc895f85e3ca (patch) | |
tree | b9a9af7d60f4114520fab9414ad7f6048da8a521 | |
parent | 9aeeffa9293f6deeb5c6aaec5d81071aa2e269f0 (diff) | |
download | cpython-84424f1532818ed011a09255f373dc895f85e3ca.zip cpython-84424f1532818ed011a09255f373dc895f85e3ca.tar.gz cpython-84424f1532818ed011a09255f373dc895f85e3ca.tar.bz2 |
typo: __next__ -> next
-rw-r--r-- | Doc/library/collections.rst | 2 |
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__`` |