Skip to content

Commit fa000dd

Browse files
committed
fmt
1 parent cfd83c0 commit fa000dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/ascii/ascii_char.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ impl fmt::Debug for AsciiChar {
587587
let hi = HEX_DIGITS[usize::from(byte >> 4)];
588588
let lo = HEX_DIGITS[usize::from(byte & 0xf)];
589589
([Apostrophe, Backslash, AsciiChar::SmallX, hi, lo, Apostrophe], 6)
590-
},
590+
}
591591
_ => ([Apostrophe, *self, Apostrophe, Null, Null, Null], 3),
592592
};
593593

0 commit comments

Comments
 (0)