From: Joel Rosdahl Date: Wed, 1 May 2024 19:33:36 +0000 (+0200) Subject: chore: Fix typo X-Git-Tag: v4.10~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1655998d41315faacb56b4bbad79fd98af5e12f7;p=thirdparty%2Fccache.git chore: Fix typo --- diff --git a/src/ccache/core/Manifest.cpp b/src/ccache/core/Manifest.cpp index 5c0bc34c..e2b48d2d 100644 --- a/src/ccache/core/Manifest.cpp +++ b/src/ccache/core/Manifest.cpp @@ -158,7 +158,7 @@ Manifest::look_up_result_digest(const Context& ctx) const std::unordered_map stated_files; std::unordered_map hashed_files; - // Check newest result first since it's a more likely to match. + // Check newest result first since it's more likely to match. for (size_t i = m_results.size(); i > 0; i--) { const auto& result = m_results[i - 1]; if (result_matches(ctx, result, stated_files, hashed_files)) {