We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47cd3a4 commit 6d87929Copy full SHA for 6d87929
src/libcore/num/dec2flt/rawfp.rs
@@ -288,7 +288,7 @@ pub fn encode_normal<T: RawFloat>(x: Unpacked) -> T {
288
/// Construct the subnormal. A mantissa of 0 is allowed and constructs zero.
289
pub fn encode_subnormal<T: RawFloat>(significand: u64) -> T {
290
assert!(significand < T::min_sig(), "encode_subnormal: not actually subnormal");
291
- // Ê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.
292
T::from_bits(significand)
293
}
294
0 commit comments