Skip to content

Commit 3f617f6

Browse files
authored
docs: fix source comment
PR-URL: #2735 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 1c43f05 commit 3f617f6

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ function sgemv( trans, M, N, alpha, A, strideA1, strideA2, offsetA, x, strideX,
122122
}
123123
// Form: y = α*A^T*x + y
124124

125-
// ( !isrm && trans === 'no-transpose' ) || ( isrm && trans !== 'no-transpose' )
125+
// ( !isrm && trans !== 'no-transpose' ) || ( isrm && trans === 'no-transpose' )
126126
iy1 = offsetY;
127127
for ( i1 = 0; i1 < ylen; i1++ ) {
128128
tmp = 0.0;

0 commit comments

Comments
 (0)