Skip to content

Commit 71e1f8f

Browse files
committed
Fix long name of config argument
And let the value name more prominently hint at that a filename is expected here.
1 parent 1fd5bd2 commit 71e1f8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use std::process;
2020
)]
2121
struct Cli {
2222
/// additional configuration to use
23-
#[arg(short, long)]
23+
#[arg(short, long = "config", value_name = "FILE")]
2424
configs: Vec<String>,
2525
#[command(subcommand)]
2626
command: Commands,

0 commit comments

Comments
 (0)