diff options
| author | Yuri Astrakhan <YuriAstrakhan@gmail.com> | 2022-03-30 01:39:38 -0400 |
|---|---|---|
| committer | Yuri Astrakhan <YuriAstrakhan@gmail.com> | 2022-03-30 01:39:38 -0400 |
| commit | 7e8201ae0a57ef63b876cf2bf9ae388426f1dda5 (patch) | |
| tree | 5acf581815892fa97944a80a175c5f75070b5888 /compiler/rustc_apfloat | |
| parent | 600ec284838c52d1f6657c2cf0097b58970b133b (diff) | |
| download | rust-7e8201ae0a57ef63b876cf2bf9ae388426f1dda5.tar.gz rust-7e8201ae0a57ef63b876cf2bf9ae388426f1dda5.zip | |
Spellchecking some comments
This PR attempts to clean up some minor spelling mistakes in comments
Diffstat (limited to 'compiler/rustc_apfloat')
| -rw-r--r-- | compiler/rustc_apfloat/src/ieee.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_apfloat/src/ieee.rs b/compiler/rustc_apfloat/src/ieee.rs index 96277950cfe..3db8adb2a24 100644 --- a/compiler/rustc_apfloat/src/ieee.rs +++ b/compiler/rustc_apfloat/src/ieee.rs @@ -461,7 +461,7 @@ impl<S: Semantics> fmt::Display for IeeeFloat<S> { (combined / 10) as u32 as Limb }); - // Reduce the sigificand to avoid wasting time dividing 0's. + // Reduce the significand to avoid wasting time dividing 0's. while sig.last() == Some(&0) { sig.pop(); } |
