Skip to content

Commit cd4bf34

Browse files
committed
Fix the spelling of "hexadecimal"
1 parent 5253294 commit cd4bf34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/libcore/char.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ pub unsafe fn from_u32_unchecked(i: u32) -> char {
181181
///
182182
/// A 'radix' here is sometimes also called a 'base'. A radix of two
183183
/// indicates a binary number, a radix of ten, decimal, and a radix of
184-
/// sixteen, hexicdecimal, to give some common values. Arbitrary
184+
/// sixteen, hexadecimal, to give some common values. Arbitrary
185185
/// radicum are supported.
186186
///
187187
/// `from_digit()` will return `None` if the input is not a digit in

src/librustc_unicode/char.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ impl char {
126126
///
127127
/// A 'radix' here is sometimes also called a 'base'. A radix of two
128128
/// indicates a binary number, a radix of ten, decimal, and a radix of
129-
/// sixteen, hexicdecimal, to give some common values. Arbitrary
129+
/// sixteen, hexadecimal, to give some common values. Arbitrary
130130
/// radicum are supported.
131131
///
132132
/// Compared to `is_numeric()`, this function only recognizes the characters
@@ -185,7 +185,7 @@ impl char {
185185
///
186186
/// A 'radix' here is sometimes also called a 'base'. A radix of two
187187
/// indicates a binary number, a radix of ten, decimal, and a radix of
188-
/// sixteen, hexicdecimal, to give some common values. Arbitrary
188+
/// sixteen, hexadecimal, to give some common values. Arbitrary
189189
/// radicum are supported.
190190
///
191191
/// 'Digit' is defined to be only the following characters:

0 commit comments

Comments
 (0)