diff options
author | Alberto Sartori <alberto.sartori@huawei.com> | 2022-05-31 10:09:04 +0200 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2022-06-09 09:35:15 +0200 |
commit | a9dad033cbee1d6246ad158747394016e51edd9f (patch) | |
tree | 4a3f0bdbf038f7fcd69dcf41cf33a5a80e1e74ab /src | |
parent | 2a65853c94763366eb288b1efe90a1343382ad30 (diff) | |
download | justbuild-a9dad033cbee1d6246ad158747394016e51edd9f.tar.gz |
fix typos
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/build_engine/target_map/target_map.cpp | 4 | ||||
-rw-r--r-- | src/buildtool/progress_reporting/progress.hpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/buildtool/build_engine/target_map/target_map.cpp b/src/buildtool/build_engine/target_map/target_map.cpp index 4f4a087b..43d8be10 100644 --- a/src/buildtool/build_engine/target_map/target_map.cpp +++ b/src/buildtool/build_engine/target_map/target_map.cpp @@ -458,7 +458,7 @@ void withDependencies( if (rule->Tainted().find(entry->String()) == rule->Tainted().end()) { throw Evaluator::EvaluationError{ - fmt::format("may_fail contains entry {} the the rule " + fmt::format("may_fail contains entry {} the rule " "is not tainted with", entry->ToString())}; } @@ -491,7 +491,7 @@ void withDependencies( if (rule->Tainted().find(entry->String()) == rule->Tainted().end()) { throw Evaluator::EvaluationError{ - fmt::format("no_cache contains entry {} the the rule " + fmt::format("no_cache contains entry {} the rule " "is not tainted with", entry->ToString())}; } diff --git a/src/buildtool/progress_reporting/progress.hpp b/src/buildtool/progress_reporting/progress.hpp index 5940c880..5cc7e027 100644 --- a/src/buildtool/progress_reporting/progress.hpp +++ b/src/buildtool/progress_reporting/progress.hpp @@ -48,7 +48,7 @@ class Progress { } // Return a reference to the origin map. It is the responsibility - // of the caller to ensure that access happens only happens in a + // of the caller to ensure that access only happens in a // single-threaded context. auto OriginMap() -> std::unordered_map< std::string, |