1
Fork 0

Fixed copy+paste error in comment

Co-authored-by: Mara Bos <m-ou.se@m-ou.se>
This commit is contained in:
Elias Holzmann 2024-02-16 00:29:06 +01:00
parent ecdf48e2b1
commit a5a6d40791

View file

@ -277,7 +277,7 @@ pub enum Sign {
pub enum DebugAsHex { pub enum DebugAsHex {
/// Use lower-case hexadecimal integers for the `Debug` trait (like [the `x?` type](../../std/fmt/index.html#formatting-traits)). /// Use lower-case hexadecimal integers for the `Debug` trait (like [the `x?` type](../../std/fmt/index.html#formatting-traits)).
Lower, Lower,
/// Use upper-case hexadecimal integers for the `Debug` trait (like [the `x?` type](../../std/fmt/index.html#formatting-traits)). /// Use upper-case hexadecimal integers for the `Debug` trait (like [the `X?` type](../../std/fmt/index.html#formatting-traits)).
Upper, Upper,
} }