about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-04-20 03:06:29 -0700
committerbors <bors@rust-lang.org>2014-04-20 03:06:29 -0700
commita27dc534e4dd01b9fb5cf7c5c30f2b2694b78d85 (patch)
treecfbdbc838c338369417414c2656822e0cbdcedd9 /src/libstd
parent9b5b21951b6cf07360b423933d8518a5cb170cc7 (diff)
parentae555e38305972718d19d556b13048d89c7d3c46 (diff)
downloadrust-a27dc534e4dd01b9fb5cf7c5c30f2b2694b78d85.tar.gz
rust-a27dc534e4dd01b9fb5cf7c5c30f2b2694b78d85.zip
auto merge of #13640 : jbcrail/rust/spelling-updates, r=alexcrichton
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/fmt/num.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/fmt/num.rs b/src/libstd/fmt/num.rs
index 1abfca50b54..9000d2c8737 100644
--- a/src/libstd/fmt/num.rs
+++ b/src/libstd/fmt/num.rs
@@ -74,11 +74,11 @@ struct Octal;
 #[deriving(Clone, Eq)]
 struct Decimal;
 
-/// A hexidecimal (base 16) radix, formatted with lower-case characters
+/// A hexadecimal (base 16) radix, formatted with lower-case characters
 #[deriving(Clone, Eq)]
 struct LowerHex;
 
-/// A hexidecimal (base 16) radix, formatted with upper-case characters
+/// A hexadecimal (base 16) radix, formatted with upper-case characters
 #[deriving(Clone, Eq)]
 pub struct UpperHex;