From 60256a875c67756c1cafc3da3b9c204303391b00 Mon Sep 17 00:00:00 2001 From: Carlos Daniel Vilaseca Date: Sat, 31 May 2025 11:55:08 -0400 Subject: [PATCH] fix typo in suggestion log Signed-off-by: Carlos Daniel Vilaseca --- pkg/compose/watch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/compose/watch.go b/pkg/compose/watch.go index 4d4b19066..e89962aaa 100644 --- a/pkg/compose/watch.go +++ b/pkg/compose/watch.go @@ -197,7 +197,7 @@ func (s *composeService) watch(ctx context.Context, syncChannel chan bool, proje } if len(paths) == 0 { - return fmt.Errorf("none of the selected services is configured for watch, consider setting an 'develop' section") + return fmt.Errorf("none of the selected services is configured for watch, consider setting a 'develop' section") } watcher, err := watch.NewWatcher(paths)