From: Raymond Hettinger Date: Wed, 8 Apr 2009 01:16:27 +0000 (+0000) Subject: Typo. X-Git-Tag: v3.1b1~343 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2352cf351917fdc964c4778c55b028dc6523d401;p=python Typo. --- diff --git a/Lib/collections.py b/Lib/collections.py index 69a4b019cd..3c1b78a366 100644 --- a/Lib/collections.py +++ b/Lib/collections.py @@ -89,7 +89,7 @@ class OrderedDict(dict, MutableMapping): curr = curr.next def __reversed__(self): - 'od.__iter__() <==> reversed(od)' + 'od.__reversed__() <==> reversed(od)' # Traverse the linked list in reverse order. root = self.__root curr = root.prev