summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_engine/dag/dag.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/execution_engine/dag/dag.hpp
parentd7d81aa3ed9fedd5e78d6e5aedb43b124427914f (diff)
downloadjustbuild-91ba464409894c0215e54f086722309b9634d6f2.tar.gz
cleanup: Fix typos in code line comments and logging messages
Diffstat (limited to 'src/buildtool/execution_engine/dag/dag.hpp')
-rw-r--r--src/buildtool/execution_engine/dag/dag.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_engine/dag/dag.hpp b/src/buildtool/execution_engine/dag/dag.hpp
index 171ea1d6..1a00f6a5 100644
--- a/src/buildtool/execution_engine/dag/dag.hpp
+++ b/src/buildtool/execution_engine/dag/dag.hpp
@@ -528,7 +528,7 @@ class DependencyGraph : DirectedAcyclicGraph {
DependencyGraph() noexcept = default;
- // DependencyGraph should not be copiable or movable. This could be changed
+ // DependencyGraph should not be copyable or movable. This could be changed
// in the case we want to make the graph construction to be functional
DependencyGraph(DependencyGraph const&) = delete;
DependencyGraph(DependencyGraph&&) = delete;