diff options
| author | Robin Kruppe <robin.kruppe@gmail.com> | 2015-12-12 00:06:05 +0100 |
|---|---|---|
| committer | Robin Kruppe <robin.kruppe@gmail.com> | 2015-12-12 00:06:05 +0100 |
| commit | 6d87929bcb19da2f0490c1e39533ab0794c5f38d (patch) | |
| tree | 944e029ba01908aee0f1c209e185468c708cc3ef /src/libcore/num | |
| parent | 47cd3a4ae7d82775b74f8199139a020323375c06 (diff) | |
| download | rust-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.rs | 2 |
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) } |
