From 12e3809aef121cb303997ca4099956be20984575 Mon Sep 17 00:00:00 2001 From: matt wilkie Date: Sun, 21 Dec 2025 12:15:14 -0700 Subject: [PATCH] fix: correct misspelling 'cancelled' to 'canceled' --- cmd/bd/sync.go | 2 +- internal/syncbranch/worktree.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/bd/sync.go b/cmd/bd/sync.go index 5e31ea19..e3c23a82 100644 --- a/cmd/bd/sync.go +++ b/cmd/bd/sync.go @@ -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 } }() diff --git a/internal/syncbranch/worktree.go b/internal/syncbranch/worktree.go index 2979e2b8..4bf75a72 100644 --- a/internal/syncbranch/worktree.go +++ b/internal/syncbranch/worktree.go @@ -791,7 +791,7 @@ func runCmdWithTimeoutMessage(ctx context.Context, timeoutMsg string, timeoutDel case <-time.After(timeoutDelay): fmt.Fprintf(os.Stderr, "⏳ %s\n", timeoutMsg) case <-ctx.Done(): - // Context cancelled, don't print message + // Context canceled, don't print message } }()