diff options
author | Raymond Hettinger <python@rcn.com> | 2011-02-02 21:12:39 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-02-02 21:12:39 (GMT) |
commit | 0446b21a510c0ca6e0c1a0c7a3c7b11109cf4755 (patch) | |
tree | 3e364011a00fcaf59584b5cfa80c61ef9f9601bf /Doc/library/collections.rst | |
parent | 6d7e26e95985f83bb0c3c137469af2f7df8936c4 (diff) | |
download | cpython-0446b21a510c0ca6e0c1a0c7a3c7b11109cf4755.zip cpython-0446b21a510c0ca6e0c1a0c7a3c7b11109cf4755.tar.gz cpython-0446b21a510c0ca6e0c1a0c7a3c7b11109cf4755.tar.bz2 |
Punctuation typo.
Diffstat (limited to 'Doc/library/collections.rst')
-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 4a92b05..488bf35 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -975,7 +975,7 @@ ABC Inherits Abstract Methods Mixin :class:`Sized` ``__len__`` :class:`Callable` ``__call__`` -:class:`Sequence` :class:`Sized`, ``__getitem__`` ``__contains__``. ``__iter__``, ``__reversed__``. +:class:`Sequence` :class:`Sized`, ``__getitem__`` ``__contains__``. ``__iter__``, ``__reversed__``, :class:`Iterable`, ``index``, and ``count`` :class:`Container` |