Skip to content

Commit 89dbc7b

Browse files
Update Doc/library/collections.rst
Co-authored-by: Stan Ulbrych <stan@python.org>
1 parent 2a9eb2e commit 89dbc7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/library/collections.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ For example::
268268
>>> c['sausage'] = 0 # counter entry with a zero count
269269
>>> del c['sausage'] # del actually removes the entry
270270

271-
Counters main insertion order internally but display from most common to
271+
Counters maintain insertion order internally but display from most common to
272272
least common when possible:
273273

274274
>>> c = Counter(a=1, b=2, c=3)

0 commit comments

Comments
 (0)