Merge pull request #964 from dulltz/cosmetic-short

Cosmetic about short descriptions
This commit is contained in:
Nate Smith 2020-05-19 00:10:24 -05:00 committed by GitHub
commit 06e43ac881
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -32,7 +32,7 @@ Current respected settings:
var configGetCmd = &cobra.Command{
Use: "get <key>",
Short: "Prints the value of a given configuration key.",
Short: "Prints the value of a given configuration key",
Long: `Get the value for a given configuration key.
Examples:
@ -45,7 +45,7 @@ Examples:
var configSetCmd = &cobra.Command{
Use: "set <key> <value>",
Short: "Updates configuration with the value of a given key.",
Short: "Updates configuration with the value of a given key",
Long: `Update the configuration by setting a key to a value.
Examples:

View file

@ -88,13 +88,13 @@ With '--web', open the issue in a web browser instead.`,
}
var issueCloseCmd = &cobra.Command{
Use: "close {<number> | <url>}",
Short: "close issue",
Short: "Close issue",
Args: cobra.ExactArgs(1),
RunE: issueClose,
}
var issueReopenCmd = &cobra.Command{
Use: "reopen {<number> | <url>}",
Short: "reopen issue",
Short: "Reopen issue",
Args: cobra.ExactArgs(1),
RunE: issueReopen,
}