From b9948c3a41d6ba979007406d04bfed1161405141 Mon Sep 17 00:00:00 2001 From: gogacoder Date: Sun, 16 Feb 2025 22:28:50 +0700 Subject: [PATCH] fix: grammar error --- cmd/crudgen/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/crudgen/main.go b/cmd/crudgen/main.go index e5e6681..7dca4a5 100644 --- a/cmd/crudgen/main.go +++ b/cmd/crudgen/main.go @@ -27,7 +27,7 @@ func ImplementServices(mainPkgDir string, reimplement bool) { func main() { log.SetFlags(0) projectPath := flag.String("p", ".", "project path") - reimplement := flag.Bool("f", false, "pass -f to allow tool to overwrite exist functions and service structure") + reimplement := flag.Bool("f", false, "pass -f to allow tool to overwrite existing functions and service structure") flag.Parse() ImplementServices(*projectPath, *reimplement) }