From ce2675a21b87b5d5217817bf898235fef6c10a43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 28 Jan 2019 16:40:42 +0100 Subject: [PATCH] Decorator --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 64847ad..230b1ed 100644 --- a/README.md +++ b/README.md @@ -622,7 +622,7 @@ def add(x, y): ``` ### LRU Cache -**Decorator that caches functions return values.** +**Decorator that caches function's return values.** ```python @lru_cache(maxsize=None) def fib(n):