]> granicus.if.org Git - python/commitdiff
Fix mangled wording
authorRaymond Hettinger <python@rcn.com>
Wed, 13 May 2015 21:39:04 +0000 (14:39 -0700)
committerRaymond Hettinger <python@rcn.com>
Wed, 13 May 2015 21:39:04 +0000 (14:39 -0700)
Doc/library/collections.rst

index be154773bdd44102c2660e0085fbe2e8f04640e8..50cc97cf10c34c59bdaf799e42bc7913fdc34b3b 100644 (file)
@@ -269,8 +269,8 @@ For example::
 
         Return a list of the *n* most common elements and their counts from the
         most common to the least.  If *n* is omitted or ``None``,
-        :func:`most_common` returns *all* elements in the counter.  Elements
-        with equal counts are ordered arbitrarily:
+        :func:`most_common` returns *all* elements in the counter.
+        Elements with equal counts are ordered arbitrarily:
 
             >>> Counter('abracadabra').most_common(3)
             [('a', 5), ('r', 2), ('b', 2)]