From 5a48547bb1662c67e3844e4091c93eebb7b3db93 Mon Sep 17 00:00:00 2001 From: Nitin Sharma <32377892+foo290@users.noreply.github.com> Date: Thu, 12 Aug 2021 23:48:11 +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 6965c5751..030959a00 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -6,7 +6,7 @@ * Lru is a part of cache algorithms (also frequently called cache replacement * algorithms or cache replacement policies). * - * ### Logic: + * ### Logic * * Discards the least recently used items first. * * This algorithm requires keeping track of what was used when, which is * expensive if one wants to make sure the algorithm always discards the least