diff --git a/command/issue.go b/command/issue.go index 8d1fcb1d7..0ecffc90b 100644 --- a/command/issue.go +++ b/command/issue.go @@ -24,7 +24,7 @@ func init() { &cobra.Command{ Use: "view ", Args: cobra.MinimumNArgs(1), - Short: "Open an issue in the browser", + Short: "View an issue in the browser", RunE: issueView, }, ) diff --git a/command/pr.go b/command/pr.go index 037e2892b..ffd468e31 100644 --- a/command/pr.go +++ b/command/pr.go @@ -40,7 +40,7 @@ var prStatusCmd = &cobra.Command{ } var prViewCmd = &cobra.Command{ Use: "view [pr-number]", - Short: "Open a pull request in the browser", + Short: "View a pull request in the browser", RunE: prView, }