]> granicus.if.org Git - python/commitdiff
Fix typo.
authorGeorg Brandl <georg@python.org>
Sat, 18 Dec 2010 16:21:58 +0000 (16:21 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 18 Dec 2010 16:21:58 +0000 (16:21 +0000)
Doc/library/collections.rst

index bc3801a89d9d09dd504bd2a55ffe376c0b01843f..3e03dee3ac0e8741e3309322deca21b78c3288f9 100644 (file)
@@ -866,7 +866,7 @@ If a new entry overwrites an existing entry, the
 original insertion position is changed and moved to the end::
 
     class LastUpdatedOrderedDict(OrderedDict):
-        'Store items is the order the keys were last added'
+        'Store items in the order the keys were last added'
         def __setitem__(self, key, value):
             if key in self:
                 del self[key]