summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-02-03 07:08:25 (GMT)
committerGeorg Brandl <georg@python.org>2011-02-03 07:08:25 (GMT)
commite951e917c67aba49b8018e94e095f669871fe63b (patch)
treeda045347b9cc49ae4ee8bcc40d41a25a5a4f1b65
parent0446b21a510c0ca6e0c1a0c7a3c7b11109cf4755 (diff)
downloadcpython-e951e917c67aba49b8018e94e095f669871fe63b.zip
cpython-e951e917c67aba49b8018e94e095f669871fe63b.tar.gz
cpython-e951e917c67aba49b8018e94e095f669871fe63b.tar.bz2
Punctuation typos.
-rw-r--r--Doc/library/collections.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 488bf35..8b80b64 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`
@@ -984,7 +984,7 @@ ABC Inherits Abstract Methods Mixin
and ``insert`` ``remove``, and ``__iadd__``
:class:`Set` :class:`Sized`, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``,
- :class:`Iterable`, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``
+ :class:`Iterable`, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``,
:class:`Container` ``__sub__``, ``__xor__``, and ``isdisjoint``
:class:`MutableSet` :class:`Set` ``add`` and Inherited Set methods and