소스 검색

Fix typo in LRU cache solution (#182)

Kevin Vandenborne 6 년 전
부모
커밋
136c0b9e17
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      solutions/object_oriented_design/lru_cache/lru_cache.ipynb

+ 1 - 1
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",