Skip to content

Commit 6d87929

Browse files
author
Robin Kruppe
committed
Remove an accent in a comment
1 parent 47cd3a4 commit 6d87929

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/num/dec2flt/rawfp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ pub fn encode_normal<T: RawFloat>(x: Unpacked) -> T {
288288
/// Construct the subnormal. A mantissa of 0 is allowed and constructs zero.
289289
pub fn encode_subnormal<T: RawFloat>(significand: u64) -> T {
290290
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.
291+
// Encoded exponent is 0, the sign bit is 0, so we just have to reinterpret the bits.
292292
T::from_bits(significand)
293293
}
294294

0 commit comments

Comments
 (0)