summaryrefslogtreecommitdiff
path: root/src/buildtool/multithreading/async_map_consumer.hpp
diff options
context:
space:
mode:
authorPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-02-22 15:15:43 +0100
committerPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-02-22 15:39:46 +0100
commit91ba464409894c0215e54f086722309b9634d6f2 (patch)
tree9dd9364ab5a64716992055a3c22f2e2ad5400949 /src/buildtool/multithreading/async_map_consumer.hpp
parentd7d81aa3ed9fedd5e78d6e5aedb43b124427914f (diff)
downloadjustbuild-91ba464409894c0215e54f086722309b9634d6f2.tar.gz
cleanup: Fix typos in code line comments and logging messages
Diffstat (limited to 'src/buildtool/multithreading/async_map_consumer.hpp')
-rw-r--r--src/buildtool/multithreading/async_map_consumer.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/multithreading/async_map_consumer.hpp b/src/buildtool/multithreading/async_map_consumer.hpp
index c79f0964..3dcc0eff 100644
--- a/src/buildtool/multithreading/async_map_consumer.hpp
+++ b/src/buildtool/multithreading/async_map_consumer.hpp
@@ -40,8 +40,8 @@ using AsyncMapConsumerLoggerPtr = std::shared_ptr<AsyncMapConsumerLogger>;
// ready. As template parameters, it takes the type that keys will have, the
// type that their corresponding values will have and the type of the underlying
// thread-safe associative container. The default thread-safe associative
-// container is AsyncMap<Key, Value> and any substite must have the same public
-// interface to be used in AsyncMapConsumer.
+// container is AsyncMap<Key, Value> and any substitute must have the same
+// public interface to be used in AsyncMapConsumer.
template <typename Key, typename Value, typename Map = AsyncMap<Key, Value>>
class AsyncMapConsumer {
public: