From bf2a7275b4f12df78ba21a047672b8c641c3d228 Mon Sep 17 00:00:00 2001 From: Luciano Ramalho Date: Tue, 18 Nov 2025 14:24:46 -0300 Subject: [PATCH] Fix docstring for LastUpdatedOrderedDict example Fix #141721 --- Doc/library/collections.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 9a8108d882e02f..4e0db485e068a8 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -1209,7 +1209,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 in the order the keys were last added' + 'Store items in the order that the keys were last updated.' def __setitem__(self, key, value): super().__setitem__(key, value)