Skip to content

Commit

Permalink
docs: fix source comment
Browse files Browse the repository at this point in the history
PR-URL: stdlib-js#2735
Reviewed-by: Athan Reines <[email protected]>
  • Loading branch information
aman-095 authored and gunjjoshi committed Aug 21, 2024
1 parent 5da2a84 commit 897d897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/sgemv/lib/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function sgemv( trans, M, N, alpha, A, strideA1, strideA2, offsetA, x, strideX,
}
// Form: y = α*A^T*x + y

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

0 comments on commit 897d897

Please sign in to comment.