diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-02-22 15:15:43 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-02-22 15:39:46 +0100 |
commit | 91ba464409894c0215e54f086722309b9634d6f2 (patch) | |
tree | 9dd9364ab5a64716992055a3c22f2e2ad5400949 /test/buildtool/build_engine/expression/linked_map.test.cpp | |
parent | d7d81aa3ed9fedd5e78d6e5aedb43b124427914f (diff) | |
download | justbuild-91ba464409894c0215e54f086722309b9634d6f2.tar.gz |
cleanup: Fix typos in code line comments and logging messages
Diffstat (limited to 'test/buildtool/build_engine/expression/linked_map.test.cpp')
-rw-r--r-- | test/buildtool/build_engine/expression/linked_map.test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/buildtool/build_engine/expression/linked_map.test.cpp b/test/buildtool/build_engine/expression/linked_map.test.cpp index ecb36b92..358ac229 100644 --- a/test/buildtool/build_engine/expression/linked_map.test.cpp +++ b/test/buildtool/build_engine/expression/linked_map.test.cpp @@ -126,7 +126,7 @@ TEST_CASE("Zero copies", "[linked_map]") { for (int i{0}; i < kCount; ++i) { auto key = std::to_string(i); REQUIRE(map->contains(key)); - // underlaying map's initializer_list produces a single copy + // underlying map's initializer_list produces a single copy CHECK(map->at(key).Count() == 1); } } @@ -157,7 +157,7 @@ TEST_CASE("Zero copies", "[linked_map]") { } } - SECTION("Via underlaying map and emplace") { + SECTION("Via underlying map and emplace") { for (int i{0}; i < kCount; ++i) { map_t::underlying_map_t update{}; update.emplace(std::to_string(i), CopyCounter()); |