From e262e7283ca8f0922b09d182943ef9ad413043a9 Mon Sep 17 00:00:00 2001 From: Billy Griffin <5091167+billygriffin@users.noreply.github.com> Date: Wed, 13 Nov 2019 13:59:32 -0700 Subject: [PATCH] Swap "open in browser" to "view in browser" for view cmd --- command/issue.go | 2 +- command/pr.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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, }