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.
2 parents 5b3a8c5 + 64439ce commit 68ea4c0Copy full SHA for 68ea4c0
src/bin/cargo/cli.rs
@@ -65,7 +65,7 @@ pub fn main(config: &mut Config) -> CliResult {
65
.iter()
66
.map(|(option_name, option_help_message)| {
67
let option_name_kebab_case = option_name.replace("_", "-");
68
- let padding = " ".repeat(longest_option - option_name.len()); // safe to substract
+ let padding = " ".repeat(longest_option - option_name.len()); // safe to subtract
69
format!(
70
" -Z {}{} -- {}",
71
option_name_kebab_case, padding, option_help_message
0 commit comments