From d50a312a98e995847148322f37d9368c16c2ebdd Mon Sep 17 00:00:00 2001 From: Joshua Marsh Date: Mon, 7 Oct 2019 10:35:20 -0500 Subject: [PATCH] Documentation typos --- cmd/auth.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/auth.go b/cmd/auth.go index 3f49a5c..9e8f7ee 100644 --- a/cmd/auth.go +++ b/cmd/auth.go @@ -11,14 +11,14 @@ var authUrl string func init() { RootCmd.AddCommand(authCmd) - authCmd.Flags().StringVarP(&authUrl, "url-override", "u", "", "DCE version to deploy (Defaults to latest)") + authCmd.Flags().StringVarP(&authUrl, "url-override", "u", "", "Override the DCE login url") } var authCmd = &cobra.Command{ Use: "auth", - Short: "Configure DCE cli", + Short: "Login to dce", Run: func(cmd *cobra.Command, args []string) { - fmt.Println("Opening web browser. Please login. You will be provided with credentials to copy/paste into this terminal.") + fmt.Println("Opening web browser. Please login and copy/paste the provided credentials into this terminal.") if authUrl == "" { authUrl = *config.Auth.LoginUrl