]> granicus.if.org Git - python/commitdiff
Issue #15825: fix typo in OrderedDict docs.
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Fri, 31 Aug 2012 10:53:30 +0000 (13:53 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Fri, 31 Aug 2012 10:53:30 +0000 (13:53 +0300)
Patch by Mike Hoy.

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

index 7507c6c6b76c448a297a0d5af947372d39c68d23..72a94d047bc07b0678fb6b120dd075f417c2d082 100644 (file)
@@ -92,6 +92,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 9c38c1610f8c61e0f63f35a3a1b24fc87b5d9d53..661b6aa044882f82ca123e02a4ed3fa7d7d4ac32 100644 (file)
@@ -852,7 +852,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::