From 987eb505788fc67e988634abeaca6f3d2e76f67a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 1 Feb 2019 11:19:55 +0100 Subject: [PATCH] Decorator --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 694016f..c8d88f5 100644 --- a/README.md +++ b/README.md @@ -619,7 +619,7 @@ def add(x, y): * **Without it `'add.__name__'` would return `'out'`.** ### LRU Cache -**Decorator that caches function's return values. All arguments must be hashable.** +**Decorator that caches function's return values. All function's arguments must be hashable.** ```python from functools import lru_cache