From 91ba464409894c0215e54f086722309b9634d6f2 Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Wed, 22 Feb 2023 15:15:43 +0100 Subject: cleanup: Fix typos in code line comments and logging messages --- src/buildtool/execution_engine/dag/dag.hpp | 2 +- src/buildtool/execution_engine/traverser/traverser.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/buildtool/execution_engine') 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; diff --git a/src/buildtool/execution_engine/traverser/traverser.hpp b/src/buildtool/execution_engine/traverser/traverser.hpp index 39852643..2567f3a4 100644 --- a/src/buildtool/execution_engine/traverser/traverser.hpp +++ b/src/buildtool/execution_engine/traverser/traverser.hpp @@ -66,7 +66,7 @@ class Traverser { // Traverse starting by the artifacts with the given identifiers, avoiding // executing actions that are not strictly needed to build the given - // artifacs + // artifacts [[nodiscard]] auto Traverse( std::unordered_set const& target_ids) noexcept -> bool; -- cgit v1.2.3