]> granicus.if.org Git - python/commitdiff
Punctuation typos.
authorGeorg Brandl <georg@python.org>
Thu, 3 Feb 2011 07:08:25 +0000 (07:08 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 3 Feb 2011 07:08:25 +0000 (07:08 +0000)
Doc/library/collections.rst

index 488bf35ea3fb0e9494997595aad8921767ad1407..8b80b645dcc75c9f7e692a2d0b570777f33c4a7b 100644 (file)
@@ -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