From ff63e7afcf23dd5559c57d5486453fe60ee50be5 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Fri, 31 Aug 2012 13:54:54 +0300 Subject: Issue #15825: fix typo in OrderedDict docs. Patch by Mike Hoy. --- Doc/ACKS.txt | 1 + Doc/library/collections.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/ACKS.txt b/Doc/ACKS.txt index 03e1a6b..26f7ea9 100644 --- a/Doc/ACKS.txt +++ b/Doc/ACKS.txt @@ -95,6 +95,7 @@ docs@python.org), and we'll be glad to correct the problem. * Rob Hooft * Brian Hooper * Randall Hopper + * Mike Hoy * Michael Hudson * Eric Huss * Jeremy Hylton 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:: -- cgit v0.12