Merge pull request #74 from avitex/patch-1

Fixed small typo
This commit is contained in:
astaxie 2014-10-15 14:10:44 +08:00
commit 41477f6d88
1 changed files with 1 additions and 1 deletions

2
new.go
View File

@ -92,7 +92,7 @@ func createApp(cmd *Command, args []string) int {
apppath := path.Join(curpath, args[0])
if _, err := os.Stat(apppath); os.IsNotExist(err) == false {
fmt.Printf("[ERRO] Path(%s) has alreay existed\n", apppath)
fmt.Printf("[ERRO] Path (%s) already exists\n", apppath)
os.Exit(2)
}