[Python-checkins] cpython (3.2): Fix a typo and touch up blank lines

eric.araujo python-checkins at python.org
Fri Aug 19 14:25:14 CEST 2011


http://hg.python.org/cpython/rev/e6d34dc26e0b
changeset:   71923:e6d34dc26e0b
branch:      3.2
user:        Éric Araujo <merwok at netwok.org>
date:        Fri Aug 19 00:40:46 2011 +0200
summary:
  Fix a typo and touch up blank lines

files:
  Doc/library/collections.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -1,4 +1,3 @@
-
 :mod:`collections` --- Container datatypes
 ==========================================
 
@@ -886,7 +885,7 @@
                 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 @@
    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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list