Update usage string

This commit is contained in:
Corey Johnson 2020-05-04 10:15:47 -07:00
parent f7be93b135
commit 083693bc05

View file

@ -68,13 +68,13 @@ With '--web', open the pull request in a web browser instead.`,
RunE: prView,
}
var prCloseCmd = &cobra.Command{
Use: "close [{<number> | <url>}]",
Use: "close <number | url>",
Short: "Close a pull request",
Args: cobra.ExactArgs(1),
RunE: prClose,
}
var prReopenCmd = &cobra.Command{
Use: "reopen [{<number> | <url>}]",
Use: "reopen <number | url>",
Short: "Reopen a pull request",
Args: cobra.ExactArgs(1),
RunE: prReopen,