We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 475cac9 commit 9db8234Copy full SHA for 9db8234
clap_mangen/src/render.rs
@@ -367,7 +367,7 @@ fn format_possible_values(possibles: &Vec<&clap::builder::PossibleValue>) -> Vec
367
let val_name = value.get_name();
368
match value.get_help() {
369
Some(help) => lines.push(format!("{val_name}: {help}")),
370
- None => lines.push(val_name.to_string()),
+ None => lines.push(val_name.to_owned()),
371
}
372
373
lines
0 commit comments