diff options
| author | bors <bors@rust-lang.org> | 2016-11-25 23:31:42 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-25 23:31:42 -0600 |
| commit | 73e98a0210f0afdec28b4f5bc0f7327d6a5a8555 (patch) | |
| tree | 53d0ab0af93e5803d839560ee310bf663c156c43 | |
| parent | d64b7030658c839c60d7c7165e8be19283c3f28c (diff) | |
| parent | b15e6a6a00242d094116fe9da16efa024cff050c (diff) | |
| download | rust-73e98a0210f0afdec28b4f5bc0f7327d6a5a8555.tar.gz rust-73e98a0210f0afdec28b4f5bc0f7327d6a5a8555.zip | |
Auto merge of #37961 - samestep:radices, r=frewsxcv
Use "radices" instead of "radicum" The correct plural of "radix" is "radices" or "radixes", not "radicum".
| -rw-r--r-- | src/libcore/char.rs | 2 | ||||
| -rw-r--r-- | src/librustc_unicode/char.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/libcore/char.rs b/src/libcore/char.rs index 26d28049a47..966481e7b32 100644 --- a/src/libcore/char.rs +++ b/src/libcore/char.rs @@ -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. diff --git a/src/librustc_unicode/char.rs b/src/librustc_unicode/char.rs index 702d7d8b4b2..94599216db6 100644 --- a/src/librustc_unicode/char.rs +++ b/src/librustc_unicode/char.rs @@ -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`. @@ -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: /// |
