Skip to content

Commit 741d7a5

Browse files
authored
Docs: fix incorrect copy-paste for new X? in formatting strings
1 parent 152217d commit 741d7a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liballoc/fmt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
//! * *nothing* ⇒ [`Display`]
115115
//! * `?` ⇒ [`Debug`]
116116
//! * `x?` ⇒ [`Debug`] with lower-case hexadecimal integers
117-
//! * `X?` ⇒ [`Debug`] with lower-case hexadecimal integers
117+
//! * `X?` ⇒ [`Debug`] with upper-case hexadecimal integers
118118
//! * `o` ⇒ [`Octal`](trait.Octal.html)
119119
//! * `x` ⇒ [`LowerHex`](trait.LowerHex.html)
120120
//! * `X` ⇒ [`UpperHex`](trait.UpperHex.html)

0 commit comments

Comments
 (0)