[all (rust)] Fix cosmetic names for argument values
This commit is contained in:
parent
434d24d10a
commit
213442bffd
@ -30,7 +30,7 @@ fn main() {
|
|||||||
.help("Specify the output file rather than stdout")
|
.help("Specify the output file rather than stdout")
|
||||||
.short("o")
|
.short("o")
|
||||||
.long("output")
|
.long("output")
|
||||||
.value_name("OUTPUT"),
|
.value_name("FILE"),
|
||||||
)
|
)
|
||||||
// arguments
|
// arguments
|
||||||
.arg(
|
.arg(
|
||||||
|
@ -34,7 +34,7 @@ fn main() {
|
|||||||
.help("Specify the input device")
|
.help("Specify the input device")
|
||||||
.short("i")
|
.short("i")
|
||||||
.long("input")
|
.long("input")
|
||||||
.value_name("INPUT")
|
.value_name("FILE")
|
||||||
.required(true),
|
.required(true),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
@ -42,7 +42,7 @@ fn main() {
|
|||||||
.help("Specify the output device")
|
.help("Specify the output device")
|
||||||
.short("o")
|
.short("o")
|
||||||
.long("output")
|
.long("output")
|
||||||
.value_name("OUTPUT")
|
.value_name("FILE")
|
||||||
.required(true),
|
.required(true),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ fn main() {
|
|||||||
.help("Specify the input xml")
|
.help("Specify the input xml")
|
||||||
.short("i")
|
.short("i")
|
||||||
.long("input")
|
.long("input")
|
||||||
.value_name("INPUT")
|
.value_name("FILE")
|
||||||
.required(true),
|
.required(true),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
@ -49,7 +49,7 @@ fn main() {
|
|||||||
.help("Specify the output device to check")
|
.help("Specify the output device to check")
|
||||||
.short("o")
|
.short("o")
|
||||||
.long("output")
|
.long("output")
|
||||||
.value_name("OUTPUT")
|
.value_name("FILE")
|
||||||
.required(true),
|
.required(true),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ fn main() {
|
|||||||
.help("Specify the output file rather than stdout")
|
.help("Specify the output file rather than stdout")
|
||||||
.short("o")
|
.short("o")
|
||||||
.long("output")
|
.long("output")
|
||||||
.value_name("OUTPUT"),
|
.value_name("FILE"),
|
||||||
)
|
)
|
||||||
// arguments
|
// arguments
|
||||||
.arg(
|
.arg(
|
||||||
|
@ -34,7 +34,7 @@ fn main() {
|
|||||||
.help("Specify the input device")
|
.help("Specify the input device")
|
||||||
.short("i")
|
.short("i")
|
||||||
.long("input")
|
.long("input")
|
||||||
.value_name("INPUT")
|
.value_name("FILE")
|
||||||
.required(true),
|
.required(true),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
@ -42,7 +42,7 @@ fn main() {
|
|||||||
.help("Specify the output device")
|
.help("Specify the output device")
|
||||||
.short("o")
|
.short("o")
|
||||||
.long("output")
|
.long("output")
|
||||||
.value_name("OUTPUT")
|
.value_name("FILE")
|
||||||
.required(true),
|
.required(true),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
|
@ -34,7 +34,7 @@ fn main() {
|
|||||||
.help("Specify the input xml")
|
.help("Specify the input xml")
|
||||||
.short("i")
|
.short("i")
|
||||||
.long("input")
|
.long("input")
|
||||||
.value_name("INPUT")
|
.value_name("FILE")
|
||||||
.required(true),
|
.required(true),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
@ -42,7 +42,7 @@ fn main() {
|
|||||||
.help("Specify the output device")
|
.help("Specify the output device")
|
||||||
.short("o")
|
.short("o")
|
||||||
.long("output")
|
.long("output")
|
||||||
.value_name("OUTPUT")
|
.value_name("FILE")
|
||||||
.required(true),
|
.required(true),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
|
@ -20,7 +20,7 @@ fn main() {
|
|||||||
.required(true)
|
.required(true)
|
||||||
.short("i")
|
.short("i")
|
||||||
.long("input")
|
.long("input")
|
||||||
.value_name("INPUT")
|
.value_name("FILE")
|
||||||
.takes_value(true),
|
.takes_value(true),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
@ -29,7 +29,7 @@ fn main() {
|
|||||||
.required(true)
|
.required(true)
|
||||||
.short("o")
|
.short("o")
|
||||||
.long("output")
|
.long("output")
|
||||||
.value_name("OUTPUT")
|
.value_name("FILE")
|
||||||
.takes_value(true),
|
.takes_value(true),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
|
Loading…
Reference in New Issue
Block a user