From 328e53bff32d01007cb29f7e6c35538602ebe971 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 9 May 2024 00:10:21 +0900 Subject: [PATCH] math.big: fix typo `tranform` -> `transform` in special_array_ops.v (#21475) --- vlib/math/big/special_array_ops.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/math/big/special_array_ops.v b/vlib/math/big/special_array_ops.v index b1437aeedb..7bf33a11c9 100644 --- a/vlib/math/big/special_array_ops.v +++ b/vlib/math/big/special_array_ops.v @@ -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