Swap "open in browser" to "view in browser" for view cmd

This commit is contained in:
Billy Griffin 2019-11-13 13:59:32 -07:00
parent f7074c17e6
commit e262e7283c
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ func init() {
&cobra.Command{
Use: "view <issue-number>",
Args: cobra.MinimumNArgs(1),
Short: "Open an issue in the browser",
Short: "View an issue in the browser",
RunE: issueView,
},
)

View file

@ -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,
}