Skip to content

Commit

Permalink
fix: typos in --help output typos
Browse files Browse the repository at this point in the history
From #174
  • Loading branch information
marcoam committed Jun 17, 2020
1 parent 741b215 commit 980ad98
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var (
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "deck",
Short: "Administer your Kong declaritively",
Short: "Administer your Kong declaratively",
Long: `decK helps you manage Kong clusters with a declarative
configuration file.
Expand Down Expand Up @@ -95,15 +95,15 @@ func init() {
rootCmd.PersistentFlags().Lookup("tls-skip-verify"))

rootCmd.PersistentFlags().String("tls-server-name", "",
"Name to use to verify the hostname in"+
"Name to use to verify the hostname in "+
"Kong's Admin TLS certificate.\n"+
"This value can also be set using DECK_TLS_SERVER_NAME"+
" environment variable.")
viper.BindPFlag("tls-server-name",
rootCmd.PersistentFlags().Lookup("tls-server-name"))

rootCmd.PersistentFlags().String("ca-cert", "",
"Custom CA certificate to use to verify"+
"Custom CA certificate to use to verify "+
"Kong's Admin TLS certificate.\n"+
"This value can also be set using DECK_CA_CERT"+
" environment variable.")
Expand All @@ -112,7 +112,7 @@ func init() {

rootCmd.PersistentFlags().Int("verbose", 0,
"Enable verbose verbose logging levels\n"+
"Setting this value to 2 outputs all HTTP reqeust/response\n"+
"Setting this value to 2 outputs all HTTP requests/responses\n"+
"between decK and Kong.")
viper.BindPFlag("verbose",
rootCmd.PersistentFlags().Lookup("verbose"))
Expand Down

0 comments on commit 980ad98

Please sign in to comment.