소스 검색

Correct 'cancellation' typo in comment

Signed-off-by: Casey Korver <[email protected]>
Casey Korver 1 년 전
부모
커밋
02f40eea67
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      pkg/compose/up.go

+ 1 - 1
pkg/compose/up.go

@@ -166,7 +166,7 @@ func (s *composeService) Up(ctx context.Context, project *types.Project, options
 		})
 	}
 
-	// We use the parent context without cancelation as we manage sigterm to stop the stack
+	// We use the parent context without cancellation as we manage sigterm to stop the stack
 	err = s.start(context.WithoutCancel(ctx), project.Name, options.Start, printer.HandleEvent)
 	if err != nil && !isTerminated.Load() { // Ignore error if the process is terminated
 		return err