From 8c638d3f9077b692f7d12a212a74be98326d11a2 Mon Sep 17 00:00:00 2001 From: Amit Botzer Date: Sat, 11 Apr 2020 00:30:10 +0300 Subject: [PATCH] Fixed typo. (#1087) Changed 'applicaton' to 'application'. --- cobra/cmd/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cobra/cmd/init.go b/cobra/cmd/init.go index dcf5ada4f..edddc2cf3 100644 --- a/cobra/cmd/init.go +++ b/cobra/cmd/init.go @@ -67,7 +67,7 @@ Init will not use an existing directory with contents.`, er(err) } - fmt.Printf("Your Cobra applicaton is ready at\n%s\n", project.AbsolutePath) + fmt.Printf("Your Cobra application is ready at\n%s\n", project.AbsolutePath) }, } )