]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #15825: fix typo in OrderedDict docs.
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Fri, 31 Aug 2012 10:54:54 +0000 (13:54 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Fri, 31 Aug 2012 10:54:54 +0000 (13:54 +0300)
Patch by Mike Hoy.

Doc/ACKS.txt
Doc/library/collections.rst

index 03e1a6badc008804660a33c7aa0756dd057b3d28..26f7ea907f659e77fbff16167a8ea03118589fc5 100644 (file)
@@ -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
index e90b25e8705e94ac16617a54b54c910649dbe431..57e04810f758a398f3bb98c51b8dcb8bcc3313a9 100644 (file)
@@ -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::