Skip to content

Commit d69207f

Browse files
authored
Update 09 - Decorator Application - Memoization.ipynb
fix typo
1 parent 5366926 commit d69207f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Part 1/Section 07 - Scopes, Closures and Decorators/09 - Decorator Application - Memoization.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,7 @@
10941094
"cell_type": "markdown",
10951095
"metadata": {},
10961096
"source": [
1097-
"You'll not how Python had to recalculate `fib` for `10, 9,` etc. This is because the cache can only contain 10 items, so when we calculated `fib(20)`, it stored fib for `20, 19, ..., 11` (10 items) and therefore the oldest items fib `10, 9, ..., 1` were removed from the cache to make space."
1097+
"Note how Python had to recalculate `fib` for `10, 9,` etc. This is because the cache can only contain 10 items, so when we calculated `fib(20)`, it stored fib for `20, 19, ..., 11` (10 items) and therefore the oldest items fib `10, 9, ..., 1` were removed from the cache to make space."
10981098
]
10991099
},
11001100
{

0 commit comments

Comments
 (0)