From 545fb0471d93d038258ae558da8537ba94f87bd9 Mon Sep 17 00:00:00 2001 From: Redddy <78539407+reddevilmidzy@users.noreply.github.com> Date: Thu, 20 Feb 2025 22:09:49 +0900 Subject: [PATCH] Fix incorrect reference link in collections module Fix incorrect reference link in Lib/collections/__init__.py The reference link to the multiset tutorial was incorrect in Lib/collections/__init__.py. Updated it to match the correct link already used in Doc/library/collections.rst. --- Lib/collections/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 78229ac54b80da..d2ddc1cd9ec2ea 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -595,7 +595,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