Change name of argument for -i option.

This commit is contained in:
Nicolás A. Ortega Froysa 2021-03-03 12:57:46 +01:00
parent 585bdee553
commit 196f7b9ca9

View File

@ -26,7 +26,7 @@ use std::collections::VecDeque;
struct Opt { struct Opt {
#[structopt(short, long)] #[structopt(short, long)]
verbose:bool, verbose:bool,
#[structopt(short, long)] #[structopt(short, long, name="FILE")]
import:Option<PathBuf>, import:Option<PathBuf>,
n:usize, n:usize,
} }