about summary refs log tree commit diff
path: root/compiler/rustc_apfloat
diff options
context:
space:
mode:
authorYuri Astrakhan <YuriAstrakhan@gmail.com>2022-03-30 01:39:38 -0400
committerYuri Astrakhan <YuriAstrakhan@gmail.com>2022-03-30 01:39:38 -0400
commit7e8201ae0a57ef63b876cf2bf9ae388426f1dda5 (patch)
tree5acf581815892fa97944a80a175c5f75070b5888 /compiler/rustc_apfloat
parent600ec284838c52d1f6657c2cf0097b58970b133b (diff)
downloadrust-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.rs2
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();
             }