[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") .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(

View File

@ -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),
); );

View File

@ -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),
); );

View File

@ -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(

View File

@ -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(

View File

@ -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(

View File

@ -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(