Skip to content

Commit

Permalink
Auto merge of rust-lang#37961 - samestep:radices, r=frewsxcv
Browse files Browse the repository at this point in the history
Use "radices" instead of "radicum"

The correct plural of "radix" is "radices" or "radixes", not "radicum".
  • Loading branch information
bors authored Nov 26, 2016
2 parents d64b703 + b15e6a6 commit 73e98a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/libcore/char.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ impl fmt::Display for CharTryFromError {
/// A 'radix' here is sometimes also called a 'base'. A radix of two
/// indicates a binary number, a radix of ten, decimal, and a radix of
/// sixteen, hexadecimal, to give some common values. Arbitrary
/// radicum are supported.
/// radices are supported.
///
/// `from_digit()` will return `None` if the input is not a digit in
/// the given radix.
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_unicode/char.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ impl char {
/// A 'radix' here is sometimes also called a 'base'. A radix of two
/// indicates a binary number, a radix of ten, decimal, and a radix of
/// sixteen, hexadecimal, to give some common values. Arbitrary
/// radicum are supported.
/// radices are supported.
///
/// Compared to `is_numeric()`, this function only recognizes the characters
/// `0-9`, `a-z` and `A-Z`.
Expand Down Expand Up @@ -190,7 +190,7 @@ impl char {
/// A 'radix' here is sometimes also called a 'base'. A radix of two
/// indicates a binary number, a radix of ten, decimal, and a radix of
/// sixteen, hexadecimal, to give some common values. Arbitrary
/// radicum are supported.
/// radices are supported.
///
/// 'Digit' is defined to be only the following characters:
///
Expand Down

0 comments on commit 73e98a0

Please sign in to comment.