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 /src/buildtool/build_engine/expression/linked_map.hpp | |
parent | d7d81aa3ed9fedd5e78d6e5aedb43b124427914f (diff) | |
download | justbuild-91ba464409894c0215e54f086722309b9634d6f2.tar.gz |
cleanup: Fix typos in code line comments and logging messages
Diffstat (limited to 'src/buildtool/build_engine/expression/linked_map.hpp')
-rw-r--r-- | src/buildtool/build_engine/expression/linked_map.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/build_engine/expression/linked_map.hpp b/src/buildtool/build_engine/expression/linked_map.hpp index cbf46453..e19c5e68 100644 --- a/src/buildtool/build_engine/expression/linked_map.hpp +++ b/src/buildtool/build_engine/expression/linked_map.hpp @@ -212,7 +212,7 @@ class LinkedMap { auto const& my_items = Items(); auto const& other_items = other.Items(); // Search for duplicates, using that iteration over the items is - // orderd by keys. + // ordered by keys. auto me = my_items.begin(); auto they = other_items.begin(); while (me != my_items.end() and they != other_items.end()) { @@ -360,7 +360,7 @@ class LinkedMap { } } - // No more comaprisons to be made; copy over the remaining + // No more comparisons to be made; copy over the remaining // entries items.insert(items.end(), citemsit, citemsend); items.insert(items.end(), nitemsit, nitemsend); |