From 0b99e5dd0669b8258cc70ef3eaeaba3893b2be45 Mon Sep 17 00:00:00 2001 From: Simon Legg Date: Mon, 10 Oct 2022 15:52:55 +0200 Subject: [PATCH] Fix typo --- src/exercise/02.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/exercise/02.md b/src/exercise/02.md index 6d88df18..18f5b184 100644 --- a/src/exercise/02.md +++ b/src/exercise/02.md @@ -10,8 +10,8 @@ Elaborate on your learnings here in `src/exercise/02.md` Memoization: a performance optimization technique which eliminates the need to recompute a value for a given input by storing the original computation and -returning that stored value when the same input is provided. Caching is a form -of memoization. Here's a simple implementation of memoization: +returning that stored value when the same input is provided. Memoization is a form +of caching. Here's a simple implementation of memoization: ```typescript const values = {}