]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a typo and touch up blank lines
authorÉric Araujo <merwok@netwok.org>
Thu, 18 Aug 2011 22:40:46 +0000 (00:40 +0200)
committerÉric Araujo <merwok@netwok.org>
Thu, 18 Aug 2011 22:40:46 +0000 (00:40 +0200)
Doc/library/collections.rst

index 4975f7477065173e96a6d7f40ba82ca7a388ce36..bf1fe2c6c0b70f4b748b2d000da4737201a5d9da 100644 (file)
@@ -1,4 +1,3 @@
-
 :mod:`collections` --- Container datatypes
 ==========================================
 
@@ -886,7 +885,7 @@ original insertion position is changed and moved to the end::
                 del self[key]
             OrderedDict.__setitem__(self, key, value)
 
-An ordered dictionary can combined with the :class:`Counter` class
+An ordered dictionary can be combined with the :class:`Counter` class
 so that the counter remembers the order elements are first encountered::
 
    class OrderedCounter(Counter, OrderedDict):
@@ -985,6 +984,7 @@ attribute.
    subclass) or an arbitrary sequence which can be converted into a string using
    the built-in :func:`str` function.
 
+
 .. _collections-abstract-base-classes:
 
 ABCs - abstract base classes