Browse Source

Decorator

pull/10/head
Jure Šorn 6 years ago
parent
commit
ce2675a21b
1 changed files with 1 additions and 1 deletions
  1. 2
      README.md

2
README.md

@ -622,7 +622,7 @@ def add(x, y):
``` ```
### LRU Cache ### LRU Cache
**Decorator that caches functions return values.**
**Decorator that caches function's return values.**
```python ```python
@lru_cache(maxsize=None) @lru_cache(maxsize=None)
def fib(n): def fib(n):

Loading…
Cancel
Save