aboutsummaryrefslogtreecommitdiffstats
path: root/commands/label.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.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.go')
-rw-r--r--commands/label.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/label.go b/commands/label.go
index 4f15c893..a07e9efc 100644
--- a/commands/label.go
+++ b/commands/label.go
@@ -33,7 +33,7 @@ func runLabel(cmd *cobra.Command, args []string) error {
var labelCmd = &cobra.Command{
Use: "label [<id>]",
- Short: "Display, add or remove labels.",
+ Short: "Display, add or remove labels to/from a bug.",
PreRunE: loadRepo,
RunE: runLabel,
}