about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorJoseph Crail <jbcrail@gmail.com>2014-04-20 01:35:14 -0400
committerJoseph Crail <jbcrail@gmail.com>2014-04-20 01:35:14 -0400
commitae555e38305972718d19d556b13048d89c7d3c46 (patch)
tree0990542bbe3434b784aaf3ad1869e3c00a44add1 /src/libstd
parent7b6e7ebe73b5f046faa81406ed58866364f6cfee (diff)
downloadrust-ae555e38305972718d19d556b13048d89c7d3c46.tar.gz
rust-ae555e38305972718d19d556b13048d89c7d3c46.zip
Fix spelling mistakes in documentation and code.
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;