libimagentrytag: Add value_name() call in ui helpers
This commit is contained in:
parent
4e987e32cf
commit
e05d0e6f13
1 changed files with 2 additions and 0 deletions
|
@ -18,6 +18,7 @@ pub fn tag_add_arg<'a, 'b>() -> Arg<'a, 'b> {
|
||||||
.short("a")
|
.short("a")
|
||||||
.long("add")
|
.long("add")
|
||||||
.takes_value(true)
|
.takes_value(true)
|
||||||
|
.value_name("tags")
|
||||||
.multiple(true)
|
.multiple(true)
|
||||||
.help("Add tags, seperated by comma or by specifying multiple times")
|
.help("Add tags, seperated by comma or by specifying multiple times")
|
||||||
}
|
}
|
||||||
|
@ -27,6 +28,7 @@ pub fn tag_remove_arg<'a, 'b>() -> Arg<'a, 'b> {
|
||||||
.short("r")
|
.short("r")
|
||||||
.long("remove")
|
.long("remove")
|
||||||
.takes_value(true)
|
.takes_value(true)
|
||||||
|
.value_name("tags")
|
||||||
.multiple(true)
|
.multiple(true)
|
||||||
.help("Remove tags, seperated by comma or by specifying multiple times")
|
.help("Remove tags, seperated by comma or by specifying multiple times")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue