diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index d29afffebf8447..0fe81edcbb735b 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -592,7 +592,7 @@ class Counter(dict): # References: # http://en.wikipedia.org/wiki/Multiset # http://www.gnu.org/software/smalltalk/manual-base/html_node/Bag.html - # http://www.demo2s.com/Tutorial/Cpp/0380__set-multiset/Catalog0380__set-multiset.htm + # http://www.java2s.com/Tutorial/Cpp/0380__set-multiset/Catalog0380__set-multiset.htm # http://code.activestate.com/recipes/259174/ # Knuth, TAOCP Vol. II section 4.6.3