aboutsummaryrefslogtreecommitdiffstats
path: root/commands/comment_edit.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-12-10 12:42:20 +0100
committerMichael Muré <batolettre@gmail.com>2021-02-14 12:17:49 +0100
commitbb8a214df37cab33032ce709a924e6282127d446 (patch)
tree8977d886e902577201a2161b4a9e9d16efd48f91 /commands/comment_edit.go
parentdb7074301b6af895b1a47ecd12a5028ac809abfc (diff)
downloadgit-bug-bb8a214df37cab33032ce709a924e6282127d446.tar.gz
command: fix "comment edit" usage
Diffstat (limited to 'commands/comment_edit.go')
-rw-r--r--commands/comment_edit.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/comment_edit.go b/commands/comment_edit.go
index 61132967..6a86f37e 100644
--- a/commands/comment_edit.go
+++ b/commands/comment_edit.go
@@ -16,7 +16,7 @@ func newCommentEditCommand() *cobra.Command {
options := commentEditOptions{}
cmd := &cobra.Command{
- Use: "edit <commentid>",
+ Use: "edit [COMMENT_ID]",
Short: "Edit an existing comment on a bug.",
Args: cobra.ExactArgs(1),
PreRunE: loadBackendEnsureUser(env),