Fix typo.

This commit is contained in:
Georg Brandl 2010-12-18 16:21:58 +00:00
parent ac53ab64a6
commit 77570e2d0e
1 changed files with 1 additions and 1 deletions

View 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]