Skip to content

Commit 8d34be0

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent b85f1a0 commit 8d34be0

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/ssyrk/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/ssyrk/lib/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ function scal( uplo, N, beta, X, strideX1, strideX2, offsetX ) { // TODO: consid
146146
for ( i1 = 0; i1 < N; i1++ ) {
147147
for ( i0 = i1; i0 < N; i0++ ) {
148148
idx = offsetX + ( i1 * x1 ) + ( i0 * x0 );
149-
X[ idx ] = X[ idx ] * beta
149+
X[ idx ] = X[ idx ] * beta;
150150
}
151151
}
152152
return X;

0 commit comments

Comments
 (0)