diff --git a/caches.py b/caches.py index 225b509..9e49d40 100644 --- a/caches.py +++ b/caches.py @@ -215,7 +215,7 @@ def clear(): def lfu_cache(maxsize=100): - '''Least-frequenty-used cache decorator. + '''Least-frequently-used cache decorator. Arguments to the cached function must be hashable. Cache performance statistics stored in f.hits and f.misses.