Correct 'cancellation' typo in comment

Signed-off-by: Casey Korver <casey@korver.dev>
This commit is contained in:
Casey Korver 2024-06-01 16:39:34 -05:00 committed by Guillaume Lours
parent 250c3112b9
commit 02f40eea67

View File

@ -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