From e3ba29eb0a913189ad1baeda901c9ff65d2a4cd8 Mon Sep 17 00:00:00 2001 From: foo290 Date: Fri, 13 Aug 2021 22:33:22 +0530 Subject: [PATCH] suggestions applied --- others/lru_cache.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/others/lru_cache.cpp b/others/lru_cache.cpp index a1d7a22df..1081d0b16 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -57,10 +57,9 @@ namespace others { /** * @namespace lru_cache - * @brief Implementation of LRU caching algorithm + * @brief Implementation of the [LRU caching algorithm](https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)) */ namespace lru_cache { - /** * @brief LRU cache class */