Skip to content

Commit 01713b4

Browse files
authored
gh-141721: Improve docstring for LastUpdatedOrderedDict example (gh141724)
1 parent 9b69a55 commit 01713b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/collections.rst

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

12111211
class LastUpdatedOrderedDict(OrderedDict):
1212-
'Store items in the order the keys were last added'
1212+
'Store items in the order that the keys were last updated.'
12131213

12141214
def __setitem__(self, key, value):
12151215
super().__setitem__(key, value)

0 commit comments

Comments
 (0)