Skip to content

Commit 147766e

Browse files
committed
fix clippy
1 parent 47d7b07 commit 147766e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/pow10gen/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ fn pow10_normalized(e: i64, ten: &BigUint, b1p128: &BigUint) -> (BigUint, i64, b
4747
(d, be, exact)
4848
}
4949

50-
/// Convert a 128-bit BigUint to PmHiLo (hi, lo), rounding up if not exact.
50+
/// Convert a 128-bit `BigUint` to `PmHiLo` (hi, lo), rounding up if not exact.
5151
fn to_pmhilo(d: &BigUint, exact: bool, b1p64: &BigUint) -> (u64, u64) {
5252
let (hi, lo) = d.div_mod_floor(b1p64);
5353
let mut uhi = u64_from(&hi);

0 commit comments

Comments
 (0)