Skip to content

Commit 90705f5

Browse files
authored
chore: clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent fd7bc75 commit 90705f5

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/sgemm/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function sgemm( transA, transB, M, N, K, alpha, A, strideA1, strideA2, offsetA,
7979
throw new RangeError( format( 'invalid argument. Third argument must be a nonnegative integer. Value: `%d`.', M ) );
8080
}
8181
if ( N < 0 ) {
82-
throw new RangeError( format( 'invalid argument. Fourth argument must be a nonnegative integer. Value: `%d`.', M ) );
82+
throw new RangeError( format( 'invalid argument. Fourth argument must be a nonnegative integer. Value: `%d`.', N ) );
8383
}
8484
if ( K < 0 ) {
8585
throw new RangeError( format( 'invalid argument. Fifth argument must be a nonnegative integer. Value: `%d`.', K ) );

0 commit comments

Comments
 (0)