From fd8bb59e06fba70915b252b9a86cae796cf6ca24 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Thu, 12 Aug 2021 18:19:02 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for 4e223bc3 --- 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 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: /**