Skip to content

Commit 78eb1bc

Browse files
ShabiShett07kgryte
andauthored
chore: add correct argument number
Co-authored-by: Athan <[email protected]> Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent dbd5096 commit 78eb1bc

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function dgemv( order, trans, M, N, alpha, A, LDA, x, strideX, beta, y, strideY
9494
vala = N;
9595
}
9696
if ( LDA < max( 1, vala ) ) {
97-
throw new RangeError( format( 'invalid argument. Sixth argument must be greater than or equal to max(1,%d). Value: `%d`.', vala, LDA ) );
97+
throw new RangeError( format( 'invalid argument. Seventh argument must be greater than or equal to max(1,%d). Value: `%d`.', vala, LDA ) );
9898
}
9999
if ( strideX === 0 ) {
100100
throw new RangeError( format( 'invalid argument. Ninth argument must be non-zero.' ) );

0 commit comments

Comments
 (0)