mirror of
https://github.com/python/cpython.git
synced 2025-09-25 01:43:11 +00:00
Fix mangled wording
This commit is contained in:
parent
c58cca5951
commit
3afdb2870f
1 changed files with 2 additions and 2 deletions
|
@ -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)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue