summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2025-03-22 22:32:49 +0800
committerruki <[email protected]>2025-04-08 15:31:55 +0800
commit5904d091ccdc6bde911d7ece763bd5253329ac9d (patch)
treeadb92688e180f9c4886fd81922691792f2b0bda4
parentd31fc3eb8ade62b0d80280f22329bb132ea95cfc (diff)
update comment
-rw-r--r--xmake/modules/async/jobgraph.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/async/jobgraph.lua b/xmake/modules/async/jobgraph.lua
index edf3cfe81..cc4d0c743 100644
--- a/xmake/modules/async/jobgraph.lua
+++ b/xmake/modules/async/jobgraph.lua
@@ -119,7 +119,7 @@ function jobgraph:add_deps(...)
assert(curr, "job(%s) not found in jobgraph(%s)", name, self)
if prev then
if prev_is_group and curr_is_group then
- -- we use a fake task as a node to bridge the two groups.
+ -- we use a fake job as a node to bridge the two groups.
local fakejob = {}
for _, job in ipairs(prev) do
if not dag:has_edge(job, fakejob) then