Skip to content

Commit

Permalink
Fix format complaint; remove trailing newline
Browse files Browse the repository at this point in the history
  • Loading branch information
joelonsql committed Apr 17, 2024
1 parent 5ff5164 commit aea9284
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/biguint/multiplication.rs
Expand Up @@ -164,7 +164,6 @@ fn mac3(mut acc: &mut [BigDigit], mut b: &[BigDigit], mut c: &[BigDigit]) {
// (x * high2) * NBASE ^ m2 + z0
mac3(acc, x, low2);
mac3(&mut acc[m2..], x, high2);

} else if x.len() <= 256 {
// Karatsuba multiplication:
//
Expand Down

0 comments on commit aea9284

Please sign in to comment.