math.big: fix typo tranform -> transform in special_array_ops.v (#21475)

This commit is contained in:
Ikko Eltociear Ashimine 2024-05-09 00:10:21 +09:00 committed by GitHub
parent ecf94ee470
commit 328e53bff3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ fn shrink_tail_zeros(mut a []u32) {
// suppose operand_a bigger than operand_b and both not null.
// Both quotient and remaider are already allocated but of length 0
fn newton_divide_array_by_array(operand_a []u32, operand_b []u32, mut quotient []u32, mut remainder []u32) {
// tranform back to Integers (on the stack without allocation)
// transform back to Integers (on the stack without allocation)
a := Integer{
signum: 1
digits: operand_a