From e4b43b08b987cd291d662e7f9979e1c70cead962 Mon Sep 17 00:00:00 2001 From: vilmibm Date: Tue, 17 Mar 2020 17:13:48 -0500 Subject: [PATCH] update usage text --- command/issue.go | 2 +- command/pr.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/command/issue.go b/command/issue.go index 92656d4f1..4db194278 100644 --- a/command/issue.go +++ b/command/issue.go @@ -74,7 +74,7 @@ var issueViewCmd = &cobra.Command{ } return nil }, - Short: "View an issue in the browser", + Short: "View an issue", RunE: issueView, } diff --git a/command/pr.go b/command/pr.go index 104b90ffd..e9f78c819 100644 --- a/command/pr.go +++ b/command/pr.go @@ -57,10 +57,10 @@ var prStatusCmd = &cobra.Command{ var prViewCmd = &cobra.Command{ Use: "view [{ | | }]", Short: "View a pull request in the browser", - Long: `View a pull request specified by the argument in the browser. + Long: `View a pull request specified by the argument. Without an argument, the pull request that belongs to the current -branch is opened.`, +branch is displayed.`, RunE: prView, }