Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 77570e2

Browse files
committed
Fix typo.
1 parent ac53ab6 commit 77570e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/library/collections.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -866,7 +866,7 @@ If a new entry overwrites an existing entry, the
866866
original insertion position is changed and moved to the end::
867867

868868
class LastUpdatedOrderedDict(OrderedDict):
869-
'Store items is the order the keys were last added'
869+
'Store items in the order the keys were last added'
870870
def __setitem__(self, key, value):
871871
if key in self:
872872
del self[key]

0 commit comments

Comments
 (0)