From d054bfeb01012fcb00bd64024e91f5bc53011fc1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jure=20=C5=A0orn?= <sornjure@gmail.com>
Date: Tue, 29 Jan 2019 18:30:33 +0100
Subject: [PATCH] Decorator

---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 2350e1e..91ac189 100644
--- a/README.md
+++ b/README.md
@@ -637,10 +637,10 @@ def fib(n):
 ```
 
 ```python
->>> [fib(n) for n in range(8)]
-[0, 1, 1, 2, 3, 5, 8, 13]
+>>> [fib(n) for n in range(10)]
+[0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
 >>> fib.cache_info()
-CacheInfo(hits=12, misses=8, maxsize=None, currsize=8)
+CacheInfo(hits=16, misses=10, maxsize=None, currsize=10)
 ```
 
 ### Parametrized Decorator