command: fix "comment edit" usage

Michael Muré created

Change summary

commands/comment_edit.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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),