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 22236c8 commit a6adb98Copy full SHA for a6adb98
1 file changed
src/usage_md.rs
@@ -92,8 +92,8 @@ fn render_option(arg: &Arg, out: &mut String) {
92
93
// Invisible anchors: short first, then primary long, then long aliases
94
let mut anchor_ids: Vec<String> = Vec::new();
95
- if let Some(s) = short {
96
- anchor_ids.push(format!("option-{s}"));
+ if let Some(short) = short {
+ anchor_ids.push(format!("option-{short}"));
97
}
98
anchor_ids.push(primary_long.to_string());
99
for &alias in &visible_long_aliases {
0 commit comments