From: Raymond Hettinger Date: Wed, 13 May 2015 21:39:04 +0000 (-0700) Subject: Fix mangled wording X-Git-Tag: v3.5.0b1~144^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3afdb2870ff83ebb32a8c19260be7ced0567ac66;p=python Fix mangled wording --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index be154773bd..50cc97cf10 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -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)]