Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 889a7dc

Browse files
committed
Fix a typo and touch up blank lines
1 parent 6e7d0ba commit 889a7dc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/library/collections.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
:mod:`collections` --- Container datatypes
32
==========================================
43

@@ -886,7 +885,7 @@ original insertion position is changed and moved to the end::
886885
del self[key]
887886
OrderedDict.__setitem__(self, key, value)
888887

889-
An ordered dictionary can combined with the :class:`Counter` class
888+
An ordered dictionary can be combined with the :class:`Counter` class
890889
so that the counter remembers the order elements are first encountered::
891890

892891
class OrderedCounter(Counter, OrderedDict):
@@ -985,6 +984,7 @@ attribute.
985984
subclass) or an arbitrary sequence which can be converted into a string using
986985
the built-in :func:`str` function.
987986

987+
988988
.. _collections-abstract-base-classes:
989989

990990
ABCs - abstract base classes

0 commit comments

Comments
 (0)