]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_apfloat/src/ieee.rs
Rollup merge of #97819 - compiler-errors:use-import, r=wesleywiser
[rust.git] / compiler / rustc_apfloat / src / ieee.rs
index 96277950cfe1a0fbf9489172436ddc6c49f18480..3db8adb2a244424a52cbf667128b7a722f92150a 100644 (file)
@@ -461,7 +461,7 @@ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                 (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();
             }