Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mina86 committed Jan 25, 2024
1 parent cfd83c0 commit fa000dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/ascii/ascii_char.rs
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ impl fmt::Debug for AsciiChar {
let hi = HEX_DIGITS[usize::from(byte >> 4)];
let lo = HEX_DIGITS[usize::from(byte & 0xf)];
([Apostrophe, Backslash, AsciiChar::SmallX, hi, lo, Apostrophe], 6)
},
}
_ => ([Apostrophe, *self, Apostrophe, Null, Null, Null], 3),
};

Expand Down

0 comments on commit fa000dd

Please sign in to comment.