]> 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 193f3145dc14709630f01d643f1fea62e6070ae9..3db8adb2a244424a52cbf667128b7a722f92150a 100644 (file)
@@ -2646,7 +2646,7 @@ pub(super) fn mul<'a>(
 
         // Convert the result having "2 * precision" significant-bits back to the one
         // having "precision" significant-bits. First, move the radix point from
-        // position "2*precision - 1" to "precision - 1". The exponent need to be
+        // poision "2*precision - 1" to "precision - 1". The exponent need to be
         // adjusted by "2*precision - 1" - "precision - 1" = "precision".
         *exp -= precision as ExpInt + 1;