about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorSam Estep <sam@samestep.com>2016-11-23 08:49:35 -0500
committerSam Estep <sam@samestep.com>2016-11-23 08:49:35 -0500
commitb15e6a6a00242d094116fe9da16efa024cff050c (patch)
tree9d17caf6154d9f945b142ab81609d0479c2de33b /src/libcore
parentccdc26fd42dfccc5832114baa275f0936738095a (diff)
downloadrust-b15e6a6a00242d094116fe9da16efa024cff050c.tar.gz
rust-b15e6a6a00242d094116fe9da16efa024cff050c.zip
Use "radices" instead of "radicum"
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/char.rs2
1 files changed, 1 insertions, 1 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.