Skip to content

Commit 328e53b

Browse files
author
Ikko Eltociear Ashimine
authored
math.big: fix typo tranform -> transform in special_array_ops.v (#21475)
1 parent ecf94ee commit 328e53b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vlib/math/big/special_array_ops.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fn shrink_tail_zeros(mut a []u32) {
1717
// suppose operand_a bigger than operand_b and both not null.
1818
// Both quotient and remaider are already allocated but of length 0
1919
fn newton_divide_array_by_array(operand_a []u32, operand_b []u32, mut quotient []u32, mut remainder []u32) {
20-
// tranform back to Integers (on the stack without allocation)
20+
// transform back to Integers (on the stack without allocation)
2121
a := Integer{
2222
signum: 1
2323
digits: operand_a

0 commit comments

Comments
 (0)