From 01713b434233247bc54b04512ba5bc15ab364768 Mon Sep 17 00:00:00 2001 From: Luciano Ramalho Date: Wed, 19 Nov 2025 15:22:27 -0300 Subject: [PATCH] gh-141721: Improve docstring for LastUpdatedOrderedDict example (gh141724) --- 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 9a8108d882e0..4e0db485e068 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) -- 2.47.3