From: Georg Brandl Date: Sat, 18 Dec 2010 16:21:58 +0000 (+0000) Subject: Fix typo. X-Git-Tag: v3.2b2~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77570e2d0e6e14de534eb65049ceb3a1a789164c;p=python Fix typo. --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index bc3801a89d..3e03dee3ac 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -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]