From ef3136f41c3e9ead71a9fb0b3d48aa15a35d45e5 Mon Sep 17 00:00:00 2001 From: William Law Date: Mon, 23 Dec 2024 10:28:19 -0500 Subject: [PATCH] fix typo in executor.go (#1840) --- internal/executor/executor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/executor/executor.go b/internal/executor/executor.go index 0f5eae8559..cd980cd732 100644 --- a/internal/executor/executor.go +++ b/internal/executor/executor.go @@ -100,7 +100,7 @@ func (e *Executor) runTask(t *task) { } t.reading = nil - // Nodify blocked tasks that they can execute + // Notify blocked tasks that they can execute t.l.Lock() for _, bt := range t.blocked { // If we are the last dependency, mark the task as executable.