diff --git a/others/lru_cache.cpp b/others/lru_cache.cpp index d1b84cac3..523b40180 100644 --- a/others/lru_cache.cpp +++ b/others/lru_cache.cpp @@ -68,7 +68,7 @@ class LRUCache { int hits = 0; ///< Total number of hits, or total number of times a page ///< was found in cache. int pageFault = 0; ///< Total number of miss/page fault, or total number of - ///< times a page was not found in cache + ///< times a page was not found in cache public: /**