Skip to content

Commit a6adb98

Browse files
committed
refactor: unabbreviate a variable
1 parent 22236c8 commit a6adb98

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/usage_md.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ fn render_option(arg: &Arg, out: &mut String) {
9292

9393
// Invisible anchors: short first, then primary long, then long aliases
9494
let mut anchor_ids: Vec<String> = Vec::new();
95-
if let Some(s) = short {
96-
anchor_ids.push(format!("option-{s}"));
95+
if let Some(short) = short {
96+
anchor_ids.push(format!("option-{short}"));
9797
}
9898
anchor_ids.push(primary_long.to_string());
9999
for &alias in &visible_long_aliases {

0 commit comments

Comments
 (0)