From: Martin Quinson Date: Wed, 13 Apr 2022 14:38:43 +0000 (+0200) Subject: typo X-Git-Tag: v3.32~323 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/14618dc3963308a371947b248cef842153acffc1?hp=b631743f5e3537ae0b3ee34654c5f7c1f8a30a12 typo --- 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());