aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/comment.go2
-rw-r--r--commands/label.go2
-rw-r--r--commands/new.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/commands/comment.go b/commands/comment.go
index 0f45c18d..35937e2b 100644
--- a/commands/comment.go
+++ b/commands/comment.go
@@ -65,7 +65,7 @@ func runComment(cmd *cobra.Command, args []string) error {
}
var commentCmd = &cobra.Command{
- Use: "comment <id> [<options>...]",
+ Use: "comment <id>",
Short: "Add a new comment to a bug",
RunE: runComment,
}
diff --git a/commands/label.go b/commands/label.go
index b545852f..713d9b35 100644
--- a/commands/label.go
+++ b/commands/label.go
@@ -49,7 +49,7 @@ func runLabel(cmd *cobra.Command, args []string) error {
}
var labelCmd = &cobra.Command{
- Use: "label [<option>...] <id> [<label>...]",
+ Use: "label <id> [<label>...]",
Short: "Manipulate bug's label",
RunE: runLabel,
}
diff --git a/commands/new.go b/commands/new.go
index ce6479f1..c7846aea 100644
--- a/commands/new.go
+++ b/commands/new.go
@@ -53,7 +53,7 @@ func runNewBug(cmd *cobra.Command, args []string) error {
}
var newCmd = &cobra.Command{
- Use: "new [<option>...]",
+ Use: "new",
Short: "Create a new bug",
RunE: runNewBug,
}