diff --git a/Lib/functools.py b/Lib/functools.py index a674a685df6..b41dea79083 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -499,7 +499,7 @@ def lru_cache(maxsize=128, typed=False): with f.cache_info(). Clear the cache and statistics with f.cache_clear(). Access the underlying function with f.__wrapped__. - See: http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used + See: http://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU) """