diff mbox series

[2/3] RunQueueData.prepare: fix comment typos

Message ID 20260413095918.20804-2-yann.dirson@vates.tech
State New
Headers show
Series [1/3] add_tasks: use sets to dedup from debug output | expand

Commit Message

Yann Dirson April 13, 2026, 9:59 a.m. UTC
Signed-off-by: Yann Dirson <yann.dirson@vates.tech>
---
 lib/bb/runqueue.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index a880a0d54..8aae4e290 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -693,7 +693,7 @@  class RunQueueData:
         # To create the actual list of tasks to execute we fix the list of
         # providers and then resolve the dependencies into task IDs. This
         # process is repeated for each type of dependency (tdepends, deptask,
-        # rdeptast, recrdeptask, idepends).
+        # rdeptask, recrdeptask, idepends).
 
         def add_build_dependencies(depids, tasknames, depends, mc):
             for depname in depids:
@@ -841,7 +841,7 @@  class RunQueueData:
         # (makes sure sometask runs after someothertask of all DEPENDS, RDEPENDS and intertask dependencies, recursively)
         # We need to do this separately since we need all of runtaskentries[*].depends to be complete before this is processed
 
-        # Generating/interating recursive lists of dependencies is painful and potentially slow
+        # Generating/iterating recursive lists of dependencies is painful and potentially slow
         # Precompute recursive task dependencies here by:
         #     a) create a temp list of reverse dependencies (revdeps)
         #     b) walk up the ends of the chains (when a given task no longer has dependencies i.e. len(deps) == 0)