From e4b8c88cecd05f819550cbe408d07d45cc4ca7c0 Mon Sep 17 00:00:00 2001 From: "Jorge L. Fatta" Date: Thu, 4 Feb 2021 09:27:27 -0300 Subject: [PATCH] fix: cmds consistency --- internal/cli/get_token.go | 4 ++-- internal/cli/users.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/cli/get_token.go b/internal/cli/get_token.go index e55aa05a2..11ed04da5 100644 --- a/internal/cli/get_token.go +++ b/internal/cli/get_token.go @@ -13,8 +13,8 @@ func getTokenCmd(cli *cli) *cobra.Command { cmd := &cobra.Command{ Use: "get-token", - Short: "fetch a token for the given client and API.", - Long: `$ auth0 get-token + Short: "Fetch a token for the given client and API", + Long: `auth0 get-token Fetch an access token for the given client and API. `, RunE: func(cmd *cobra.Command, args []string) error { diff --git a/internal/cli/users.go b/internal/cli/users.go index 92682cd11..cc8ad9a76 100644 --- a/internal/cli/users.go +++ b/internal/cli/users.go @@ -17,7 +17,7 @@ const ( func usersCmd(cli *cli) *cobra.Command { cmd := &cobra.Command{ Use: "users", - Short: "manage users.", + Short: "Manage users", } cmd.SetUsageTemplate(resourceUsageTemplate())