Commit 2352cf35 authored by Raymond Hettinger's avatar Raymond Hettinger

Typo.

parent f04fa1bc
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment