aboutsummaryrefslogtreecommitdiffstats
path: root/commands/label_rm.go
diff options
context:
space:
mode:
authorJocelyn FACCHINI <jocelyn.facchini@gmail.com>2019-03-23 16:59:40 +0000
committerJocelyn FACCHINI <jocelyn.facchini@gmail.com>2019-03-23 16:59:40 +0000
commit146b6b8599f370284d6bbe7370e9ebeb7999f3cd (patch)
treebd7b9c13eadcf737fd0a0cfd11749ec3776d7e9b /commands/label_rm.go
parent90f1089dc9c9b33bf5f3a37e0ee0414344246b05 (diff)
downloadgit-bug-146b6b8599f370284d6bbe7370e9ebeb7999f3cd.tar.gz
Select and Label command documentation
- Informed that label command adds/removes a label to a given bug. - Added suggestion to use select command when omitting to provide a bug id as argument. - Added a bit more detail for the select command documentation, giving a hint to "deselect" command.
Diffstat (limited to 'commands/label_rm.go')
-rw-r--r--commands/label_rm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/label_rm.go b/commands/label_rm.go
index c03a20d9..a0c1c56d 100644
--- a/commands/label_rm.go
+++ b/commands/label_rm.go
@@ -37,7 +37,7 @@ func runLabelRm(cmd *cobra.Command, args []string) error {
var labelRmCmd = &cobra.Command{
Use: "rm [<id>] <label>[...]",
- Short: "Remove a label.",
+ Short: "Remove a label from a bug.",
PreRunE: loadRepo,
RunE: runLabelRm,
}