Skip to content

Commit 73e98a0

Browse files
authored
Auto merge of rust-lang#37961 - samestep:radices, r=frewsxcv
Use "radices" instead of "radicum" The correct plural of "radix" is "radices" or "radixes", not "radicum".
2 parents d64b703 + b15e6a6 commit 73e98a0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/libcore/char.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ impl fmt::Display for CharTryFromError {
238238
/// A 'radix' here is sometimes also called a 'base'. A radix of two
239239
/// indicates a binary number, a radix of ten, decimal, and a radix of
240240
/// sixteen, hexadecimal, to give some common values. Arbitrary
241-
/// radicum are supported.
241+
/// radices are supported.
242242
///
243243
/// `from_digit()` will return `None` if the input is not a digit in
244244
/// the given radix.

src/librustc_unicode/char.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ impl char {
138138
/// A 'radix' here is sometimes also called a 'base'. A radix of two
139139
/// indicates a binary number, a radix of ten, decimal, and a radix of
140140
/// sixteen, hexadecimal, to give some common values. Arbitrary
141-
/// radicum are supported.
141+
/// radices are supported.
142142
///
143143
/// Compared to `is_numeric()`, this function only recognizes the characters
144144
/// `0-9`, `a-z` and `A-Z`.
@@ -190,7 +190,7 @@ impl char {
190190
/// A 'radix' here is sometimes also called a 'base'. A radix of two
191191
/// indicates a binary number, a radix of ten, decimal, and a radix of
192192
/// sixteen, hexadecimal, to give some common values. Arbitrary
193-
/// radicum are supported.
193+
/// radices are supported.
194194
///
195195
/// 'Digit' is defined to be only the following characters:
196196
///

0 commit comments

Comments
 (0)