mirror of
https://github.com/clap-rs/clap
synced 2024-11-14 16:47:21 +00:00
Merge #1773
1773: style: fix comma placement for valid values when using arg_enum r=pksunkara a=mmatyas Co-authored-by: Mátyás Mustoha <matyas.mustoha@gmail.com>
This commit is contained in:
commit
633ce74ba9
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ macro_rules! arg_enum {
|
||||||
$(stringify!($v),)+
|
$(stringify!($v),)+
|
||||||
];
|
];
|
||||||
format!("valid values: {}",
|
format!("valid values: {}",
|
||||||
v.join(" ,"))
|
v.join(", "))
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue