We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae56237 commit 7f62070Copy full SHA for 7f62070
src/parse/parse_with.rs
@@ -447,7 +447,7 @@ mod tests_of_parse_with {
447
}
448
449
#[test]
450
- fn zero_cfg_and_on_short_opt() {
+ fn zero_cfg_and_one_short_opt() {
451
let opt_cfgs = vec![];
452
453
let mut cmd = Cmd::with_strings(["path/to/app".to_string(), "-f".to_string()]);
@@ -851,7 +851,7 @@ mod tests_of_parse_with {
851
852
853
854
- fn one_cfg_requires_arg_but_one_short_oopt_has_no_arg() {
+ fn one_cfg_requires_arg_but_one_short_opt_has_no_arg() {
855
let opt_cfgs = vec![OptCfg::with([names(&["f"]), has_arg(true)])];
856
857
let mut cmd = Cmd::with_strings(["app".to_string(), "-f".to_string()]);
0 commit comments