Skip to content

Commit

Permalink
Merge pull request cli#62 from github/consistency-is-key
Browse files Browse the repository at this point in the history
Swap "open in browser" to "view in browser" for view cmd
  • Loading branch information
billygriffin authored Nov 14, 2019
2 parents f7074c1 + e262e72 commit 55ab2f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion command/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
)
Expand Down
2 changes: 1 addition & 1 deletion command/pr.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

Expand Down

0 comments on commit 55ab2f6

Please sign in to comment.