diff --git a/cli/dotfiles.go b/cli/dotfiles.go index e0310d34977ce..79110a3d6e1c6 100644 --- a/cli/dotfiles.go +++ b/cli/dotfiles.go @@ -24,7 +24,7 @@ func dotfiles() *cobra.Command { cmd := &cobra.Command{ Use: "dotfiles [git_repo_url]", Args: cobra.ExactArgs(1), - Short: "Checkout and install a dotfiles repository.", + Short: "Check out and install a dotfiles repository.", Example: "coder dotfiles [-y] git@github.com:example/dotfiles.git", RunE: func(cmd *cobra.Command, args []string) error { var ( diff --git a/cli/logout.go b/cli/logout.go index 90b7f8f3d653c..1860d976734a0 100644 --- a/cli/logout.go +++ b/cli/logout.go @@ -26,7 +26,7 @@ func logout() *cobra.Command { config := createConfig(cmd) _, err = cliui.Prompt(cmd, cliui.PromptOptions{ - Text: "Are you sure you want to logout?", + Text: "Are you sure you want to log out?", IsConfirm: true, Default: "yes", }) diff --git a/cli/portforward.go b/cli/portforward.go index de8f81ea2321b..bbbda6923d8ee 100644 --- a/cli/portforward.go +++ b/cli/portforward.go @@ -29,6 +29,7 @@ func portForward() *cobra.Command { ) cmd := &cobra.Command{ Use: "port-forward ", + Short: "Forward one or more ports from the local machine to the remote workspace", Aliases: []string{"tunnel"}, Args: cobra.ExactArgs(1), Example: `