Skip to content

Commit bfb5d8a

Browse files
ShabiShett07kgryte
andauthored
chore: update naming convention
Co-authored-by: Athan <[email protected]> Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 10e9061 commit bfb5d8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/gger/lib/accessors.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ function gger( M, N, alpha, x, strideX, offsetX, y, strideY, offsetY, A, strideA
136136
tmp = alpha * getY( ybuf, iy );
137137
ix = offsetX;
138138
for ( i0 = 0; i0 < S0; i0++ ) {
139-
ox = getX( xbuf, ix ) * tmp;
140-
setA( Abuf, ia, getA( Abuf, ia ) + ox );
139+
v = getX( xbuf, ix ) * tmp;
140+
setA( Abuf, ia, getA( Abuf, ia ) + v );
141141
ix += sx;
142142
ia += da0;
143143
}

0 commit comments

Comments
 (0)