fix missing newline in cmd/add

This commit is contained in:
umarcor 2019-07-13 22:30:52 +02:00 committed by GitHub
parent 9a31ddff0e
commit 92ff7fb526
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,7 @@ Example: cobra add server -> resulting in a new cmd/server.go`,
er(err) er(err)
} }
fmt.Printf("%s created at %s", command.CmdName, command.AbsolutePath) fmt.Printf("%s created at %s\n", command.CmdName, command.AbsolutePath)
}, },
} }
) )