summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2012-01-26 08:14:16 (GMT)
committerRaymond Hettinger <python@rcn.com>2012-01-26 08:14:16 (GMT)
commiteaac4f0d30dba8b53b7ebd1e28b31863e871fa6b (patch)
tree698b0c710a21016a67fc257ffe2959a569ef4208
parent6c89a79d555a8d72b74fad5f533d36cfb645c808 (diff)
downloadcpython-eaac4f0d30dba8b53b7ebd1e28b31863e871fa6b.zip
cpython-eaac4f0d30dba8b53b7ebd1e28b31863e871fa6b.tar.gz
cpython-eaac4f0d30dba8b53b7ebd1e28b31863e871fa6b.tar.bz2
Issue 13870: Fix out of date comment.
-rw-r--r--Lib/collections.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections.py b/Lib/collections.py
index d2625fe..eb20243 100644
--- a/Lib/collections.py
+++ b/Lib/collections.py
@@ -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.