Skip to content

Commit

Permalink
Remove an accent in a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Kruppe committed Dec 11, 2015
1 parent 47cd3a4 commit 6d87929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/num/dec2flt/rawfp.rs
Expand Up @@ -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)
}

Expand Down

0 comments on commit 6d87929

Please sign in to comment.