From 980ad984e1d074c98f66a4b8678c8ac7c20c7679 Mon Sep 17 00:00:00 2001 From: Marco A Marquez Date: Wed, 17 Jun 2020 23:30:39 +0200 Subject: [PATCH] fix: typos in --help output typos From #174 --- cmd/root.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index ba230b381..c6b3880f0 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -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. @@ -95,7 +95,7 @@ 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.") @@ -103,7 +103,7 @@ func init() { 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.") @@ -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"))