From e86ba7b12f5d06d1060a9d969bf53e0fae547800 Mon Sep 17 00:00:00 2001 From: Kevin Vandenborne Date: Sat, 21 Jul 2018 13:32:01 +0200 Subject: [PATCH] Fixed typo in LRU cache --- solutions/object_oriented_design/lru_cache/lru_cache.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/object_oriented_design/lru_cache/lru_cache.ipynb b/solutions/object_oriented_design/lru_cache/lru_cache.ipynb index 954108a0..98012029 100644 --- a/solutions/object_oriented_design/lru_cache/lru_cache.ipynb +++ b/solutions/object_oriented_design/lru_cache/lru_cache.ipynb @@ -21,7 +21,7 @@ "## Constraints and assumptions\n", "\n", "* What are we caching?\n", - " * We are cahing the results of web queries\n", + " * We are caching the results of web queries\n", "* Can we assume inputs are valid or do we have to validate them?\n", " * Assume they're valid\n", "* Can we assume this fits memory?\n",