summary refs log tree commit diff
path: root/src/libcore/num
diff options
context:
space:
mode:
authorRobin Kruppe <robin.kruppe@gmail.com>2015-12-12 00:06:05 +0100
committerRobin Kruppe <robin.kruppe@gmail.com>2015-12-12 00:06:05 +0100
commit6d87929bcb19da2f0490c1e39533ab0794c5f38d (patch)
tree944e029ba01908aee0f1c209e185468c708cc3ef /src/libcore/num
parent47cd3a4ae7d82775b74f8199139a020323375c06 (diff)
downloadrust-6d87929bcb19da2f0490c1e39533ab0794c5f38d.tar.gz
rust-6d87929bcb19da2f0490c1e39533ab0794c5f38d.zip
Remove an accent in a comment
Diffstat (limited to 'src/libcore/num')
-rw-r--r--src/libcore/num/dec2flt/rawfp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/num/dec2flt/rawfp.rs b/src/libcore/num/dec2flt/rawfp.rs
index be61653c379..19758974003 100644
--- a/src/libcore/num/dec2flt/rawfp.rs
+++ b/src/libcore/num/dec2flt/rawfp.rs
@@ -288,7 +288,7 @@ pub fn encode_normal<T: RawFloat>(x: Unpacked) -> T {
 /// Construct the subnormal. A mantissa of 0 is allowed and constructs zero.
 pub fn encode_subnormal<T: RawFloat>(significand: u64) -> T {
     assert!(significand < T::min_sig(), "encode_subnormal: not actually subnormal");
-    // Êncoded exponent is 0, the sign bit is 0, so we just have to reinterpret the bits.
+    // Encoded exponent is 0, the sign bit is 0, so we just have to reinterpret the bits.
     T::from_bits(significand)
 }