Skip to content

Commit d94b25e

Browse files
committed
lint
1 parent 14be054 commit d94b25e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/portforward.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ func (r *RootCmd) portForward() *serpent.Command {
156156
go func() {
157157
defer close(shutdownCh)
158158

159-
// Wait until context is cancelled (Ctrl+C, etc.)
159+
// Wait until context is canceled (Ctrl+C, etc.)
160160
<-ctx.Done()
161161
}()
162162

@@ -202,7 +202,7 @@ func (r *RootCmd) portForward() *serpent.Command {
202202

203203
select {
204204
case <-shutdownCh:
205-
logger.Debug(ctx, "context cancelled")
205+
logger.Debug(ctx, "context canceled")
206206
return ctx.Err()
207207
case sig := <-sigs:
208208
logger.Debug(ctx, "received signal", slog.F("signal", sig))

0 commit comments

Comments
 (0)