1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-02-13 13:48:51 +02:00

Merge pull request #339 from netroby/pr/fix-typo-create-project

Typo fix: fix creata with create, uppercase first word.
This commit is contained in:
Terry.Mao 2019-09-19 19:06:15 +08:00 committed by GitHub
commit a3037e19cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ func runNew(ctx *cli.Context) error {
pwd, _ := os.Getwd() pwd, _ := os.Getwd()
p.Path = path.Join(pwd, p.Name) p.Path = path.Join(pwd, p.Name)
} }
// creata a project // Create a project
if err := create(); err != nil { if err := create(); err != nil {
return err return err
} }