Skip to content

Commit 311d2e2

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent e8bffef commit 311d2e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/number/uint32/base/muldw/lib

lib/node_modules/@stdlib/number/uint32/base/muldw/lib/assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function umuldw(a, b, out, stride, offset ) {
7676
k = ( t >>> 16 ) >>> 0;
7777

7878
out[ offset ] = ( ( ha*hb ) + w1 + k ) >>> 0; // compute the higher 32 bits and cast to an unsigned 32-bit integer
79-
out[ offset + stride ] = umul(a, b) >>> 0; // compute the lower 32 bits and cast to an unsigned 32-bit integer
79+
out[ offset + stride ] = umul( a, b ) >>> 0; // compute the lower 32 bits and cast to an unsigned 32-bit integer
8080

8181
return out;
8282
}

0 commit comments

Comments
 (0)