From 14618dc3963308a371947b248cef842153acffc1 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Wed, 13 Apr 2022 16:38:43 +0200 Subject: [PATCH 1/1] typo --- examples/cpp/dag-scheduling/s4u-dag-scheduling.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cpp/dag-scheduling/s4u-dag-scheduling.cpp b/examples/cpp/dag-scheduling/s4u-dag-scheduling.cpp index 897ebccdc7..40a9ad3057 100644 --- a/examples/cpp/dag-scheduling/s4u-dag-scheduling.cpp +++ b/examples/cpp/dag-scheduling/s4u-dag-scheduling.cpp @@ -52,7 +52,7 @@ static std::vector get_ready_tasks(const std::vector candidate_execs; for (auto& a : dax) { - // Only loot at activity that have their dependencies solved but are not assigned + // Only look at activity that have their dependencies solved but are not assigned if (a->dependencies_solved() && not a->is_assigned()) { // if it is an exec, it's ready auto* exec = dynamic_cast(a.get()); -- 2.20.1