diff --git a/src/libcore/num/dec2flt/rawfp.rs b/src/libcore/num/dec2flt/rawfp.rs index be61653c3793..197589740032 100644 --- a/src/libcore/num/dec2flt/rawfp.rs +++ b/src/libcore/num/dec2flt/rawfp.rs @@ -288,7 +288,7 @@ pub fn encode_normal(x: Unpacked) -> T { /// Construct the subnormal. A mantissa of 0 is allowed and constructs zero. pub fn encode_subnormal(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) }