From ae142aed2b5ac76573b7c36fd71a008c70a8b5be Mon Sep 17 00:00:00 2001 From: davidfrickert Date: Thu, 11 Jan 2024 19:53:53 +0100 Subject: [PATCH] minor user-facing text fix --- internal/pkg/envcheck/docker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/envcheck/docker.go b/internal/pkg/envcheck/docker.go index 0a634ad..65aae4d 100644 --- a/internal/pkg/envcheck/docker.go +++ b/internal/pkg/envcheck/docker.go @@ -27,7 +27,7 @@ func CheckIfDockerRunning(ctx context.Context, configDockerHost string) error { _, err = cli.Ping(ctx) if err != nil { - return fmt.Errorf("cannot ping the docker daemon, does it running? %w", err) + return fmt.Errorf("cannot ping the docker daemon, is it running? %w", err) } return nil