From 9e69c793849c32e81766976b1447d587167c0ced Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 10:01:15 -0700 Subject: [PATCH] fix: correct 'occured' -> 'occurred' in --help text The CLI's --help output (defined in main.go) explained the -fail flag with 'even if a PGO download error occured'. User-visible help text; go build and go vet stay clean. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 9d39a83..9fa66e4 100644 --- a/main.go +++ b/main.go @@ -66,7 +66,7 @@ main package (go1.21+), so you can build your service as usual, for example: go build ./cmd/my-service Unless the -fail flag is set, ` + name + ` will always return with a zero exit -code in order to let your build succeed, even if a PGO download error occured. +code in order to let your build succeed, even if a PGO download error occurred. OPTIONS` fmt.Fprintln(flag.CommandLine.Output(), usage)