From ba4458003a7015e5d000198e253c33cfb35f164e Mon Sep 17 00:00:00 2001 From: zhifeng hu Date: Tue, 17 Sep 2019 17:42:04 +0800 Subject: [PATCH] Typo fix: fix creata with create, uppercase first word. --- tool/kratos/new.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/kratos/new.go b/tool/kratos/new.go index 8f9325f5d..ffaeb37ba 100644 --- a/tool/kratos/new.go +++ b/tool/kratos/new.go @@ -25,7 +25,7 @@ func runNew(ctx *cli.Context) error { pwd, _ := os.Getwd() p.Path = path.Join(pwd, p.Name) } - // creata a project + // Create a project if err := create(); err != nil { return err }