[all (rust)] Fix cosmetic names for argument values

This commit is contained in:
Ming-Hung Tsai 2021-08-24 02:17:24 +08:00
parent 434d24d10a
commit 213442bffd
7 changed files with 12 additions and 12 deletions

View File

@ -30,7 +30,7 @@ fn main() {
.help("Specify the output file rather than stdout")
.short("o")
.long("output")
.value_name("OUTPUT"),
.value_name("FILE"),
)
// arguments
.arg(

View File

@ -34,7 +34,7 @@ fn main() {
.help("Specify the input device")
.short("i")
.long("input")
.value_name("INPUT")
.value_name("FILE")
.required(true),
)
.arg(
@ -42,7 +42,7 @@ fn main() {
.help("Specify the output device")
.short("o")
.long("output")
.value_name("OUTPUT")
.value_name("FILE")
.required(true),
);

View File

@ -41,7 +41,7 @@ fn main() {
.help("Specify the input xml")
.short("i")
.long("input")
.value_name("INPUT")
.value_name("FILE")
.required(true),
)
.arg(
@ -49,7 +49,7 @@ fn main() {
.help("Specify the output device to check")
.short("o")
.long("output")
.value_name("OUTPUT")
.value_name("FILE")
.required(true),
);

View File

@ -52,7 +52,7 @@ fn main() {
.help("Specify the output file rather than stdout")
.short("o")
.long("output")
.value_name("OUTPUT"),
.value_name("FILE"),
)
// arguments
.arg(

View File

@ -34,7 +34,7 @@ fn main() {
.help("Specify the input device")
.short("i")
.long("input")
.value_name("INPUT")
.value_name("FILE")
.required(true),
)
.arg(
@ -42,7 +42,7 @@ fn main() {
.help("Specify the output device")
.short("o")
.long("output")
.value_name("OUTPUT")
.value_name("FILE")
.required(true),
)
.arg(

View File

@ -34,7 +34,7 @@ fn main() {
.help("Specify the input xml")
.short("i")
.long("input")
.value_name("INPUT")
.value_name("FILE")
.required(true),
)
.arg(
@ -42,7 +42,7 @@ fn main() {
.help("Specify the output device")
.short("o")
.long("output")
.value_name("OUTPUT")
.value_name("FILE")
.required(true),
)
.arg(

View File

@ -20,7 +20,7 @@ fn main() {
.required(true)
.short("i")
.long("input")
.value_name("INPUT")
.value_name("FILE")
.takes_value(true),
)
.arg(
@ -29,7 +29,7 @@ fn main() {
.required(true)
.short("o")
.long("output")
.value_name("OUTPUT")
.value_name("FILE")
.takes_value(true),
)
.arg(