fix: correct misspelling 'cancelled' to 'canceled'

This commit is contained in:
matt wilkie
2025-12-21 12:15:14 -07:00
parent 5a2976b500
commit 12e3809aef
2 changed files with 2 additions and 2 deletions

View File

@@ -2162,7 +2162,7 @@ func runGitCmdWithTimeoutMsg(ctx context.Context, cmd *exec.Cmd, cmdName string,
case <-time.After(timeoutDelay):
fmt.Fprintf(os.Stderr, "⏳ %s is taking longer than expected (possibly waiting for authentication). If this hangs, check for a browser auth prompt or run 'git status' in another terminal.\n", cmdName)
case <-ctx.Done():
// Context cancelled, don't print message
// Context canceled, don't print message
}
}()