]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue 13870: Fix out of date comment.
authorRaymond Hettinger <python@rcn.com>
Thu, 26 Jan 2012 08:14:16 +0000 (00:14 -0800)
committerRaymond Hettinger <python@rcn.com>
Thu, 26 Jan 2012 08:14:16 +0000 (00:14 -0800)
Lib/collections.py

index d2625fe03e384359f08f3f1514036f3900722f59..eb2024352de18a7d1f483c91007d3d2e9e6301e0 100644 (file)
@@ -33,7 +33,7 @@ class OrderedDict(dict):
     # The circular doubly linked list starts and ends with a sentinel element.
     # The sentinel element never gets deleted (this simplifies the algorithm).
     # The sentinel is in self.__hardroot with a weakref proxy in self.__root.
-    # The prev/next links are weakref proxies (to prevent circular references).
+    # The prev links are weakref proxies (to prevent circular references).
     # Individual links are kept alive by the hard reference in self.__map.
     # Those hard references disappear when a key is deleted from an OrderedDict.