From 821324c2fb3b833750cd861bc98659804e2c0deb Mon Sep 17 00:00:00 2001 From: dulltz Date: Tue, 19 May 2020 12:03:56 +0900 Subject: [PATCH] cosmetic - Align the first letter to uppercase. - Align with no period at the end. --- command/config.go | 4 ++-- command/issue.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/command/config.go b/command/config.go index 0350e528b..7e2a541f7 100644 --- a/command/config.go +++ b/command/config.go @@ -32,7 +32,7 @@ Current respected settings: var configGetCmd = &cobra.Command{ Use: "get ", - 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 ", - 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: diff --git a/command/issue.go b/command/issue.go index 3c7727e53..3d3f01708 100644 --- a/command/issue.go +++ b/command/issue.go @@ -88,13 +88,13 @@ With '--web', open the issue in a web browser instead.`, } var issueCloseCmd = &cobra.Command{ Use: "close { | }", - Short: "close issue", + Short: "Close issue", Args: cobra.ExactArgs(1), RunE: issueClose, } var issueReopenCmd = &cobra.Command{ Use: "reopen { | }", - Short: "reopen issue", + Short: "Reopen issue", Args: cobra.ExactArgs(1), RunE: issueReopen, }