]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
chore: Fix typo
authorJoel Rosdahl <joel@rosdahl.net>
Wed, 1 May 2024 19:33:36 +0000 (21:33 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Wed, 1 May 2024 19:33:36 +0000 (21:33 +0200)
src/ccache/core/Manifest.cpp

index 5c0bc34cb3e0d2e2ed40ecb105619ca84e73cc84..e2b48d2d868bc2b070726fd716e6b2e1d9c533a9 100644 (file)
@@ -158,7 +158,7 @@ Manifest::look_up_result_digest(const Context& ctx) const
   std::unordered_map<std::string, FileStats> stated_files;
   std::unordered_map<std::string, Hash::Digest> hashed_files;
 
-  // Check newest result first since it's 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)) {