We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47d7b07 commit 147766eCopy full SHA for 147766e
tools/pow10gen/src/main.rs
@@ -47,7 +47,7 @@ fn pow10_normalized(e: i64, ten: &BigUint, b1p128: &BigUint) -> (BigUint, i64, b
47
(d, be, exact)
48
}
49
50
-/// Convert a 128-bit BigUint to PmHiLo (hi, lo), rounding up if not exact.
+/// Convert a 128-bit `BigUint` to `PmHiLo` (hi, lo), rounding up if not exact.
51
fn to_pmhilo(d: &BigUint, exact: bool, b1p64: &BigUint) -> (u64, u64) {
52
let (hi, lo) = d.div_mod_floor(b1p64);
53
let mut uhi = u64_from(&hi);
0 commit comments