summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-31 10:54:54 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-31 10:54:54 (GMT)
commitff63e7afcf23dd5559c57d5486453fe60ee50be5 (patch)
tree62e906cbfbe7326358363408d5e12a014dc68894 /Doc/library/collections.rst
parenta45afcada37d7945a97ed6d0c241f0b0468e7932 (diff)
downloadcpython-ff63e7afcf23dd5559c57d5486453fe60ee50be5.zip
cpython-ff63e7afcf23dd5559c57d5486453fe60ee50be5.tar.gz
cpython-ff63e7afcf23dd5559c57d5486453fe60ee50be5.tar.bz2
Issue #15825: fix typo in OrderedDict docs.
Patch by Mike Hoy.
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r--Doc/library/collections.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index e90b25e..57e0481 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -878,7 +878,7 @@ are deleted. But when new keys are added, the keys are appended
to the end and the sort is not maintained.
It is also straight-forward to create an ordered dictionary variant
-that the remembers the order the keys were *last* inserted.
+that remembers the order the keys were *last* inserted.
If a new entry overwrites an existing entry, the
original insertion position is changed and moved to the end::