From b423fd4bc069746e66569d079a03313e7680e9e1 Mon Sep 17 00:00:00 2001 From: Nitin Sharma <32377892+foo290@users.noreply.github.com> Date: Fri, 13 Aug 2021 13:36:28 +0530 Subject: [PATCH] Update others/lru_cache.cpp Co-authored-by: David Leal --- others/lru_cache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/others/lru_cache.cpp b/others/lru_cache.cpp index e46f0715b..5ef229d7d 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -30,7 +30,7 @@ * Every time a requested page is not found in cache, that is a miss or page * fault, and if the page is present in cache, then its a hit. * - * ## Data Structure used: + * ## Data Structure used * * In the algorithm below we used two different data structure, one is linked * list and other one is a hash map * * The linked list is used to contain the pages and the hash map contains the