From 02f40eea676ee31c50d147e5ecc1b00134bf1f14 Mon Sep 17 00:00:00 2001 From: Casey Korver Date: Sat, 1 Jun 2024 16:39:34 -0500 Subject: [PATCH] Correct 'cancellation' typo in comment Signed-off-by: Casey Korver --- pkg/compose/up.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/compose/up.go b/pkg/compose/up.go index 5c68a2117..b45e38e52 100644 --- a/pkg/compose/up.go +++ b/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