Skip to content

Commit 09f01ca

Browse files
authored
chore: update error message
1 parent bd0084f commit 09f01ca

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/lapack/base/dgebal/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/lapack/base/dgebal/lib/dgebal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function dgebal( order, job, N, A, LDA, out, scale ) {
8989
sa2 = LDA;
9090
} else { // order === 'row-major'
9191
if ( LDA < N ) {
92-
throw new RangeError( format( 'invalid argument. Eighth argument must be greater than or equal to %d. Value: `%d`.', N, LDA ) );
92+
throw new RangeError( format( 'invalid argument. Fifth argument must be greater than or equal to %d. Value: `%d`.', N, LDA ) );
9393
}
9494
sa1 = LDA;
9595
sa2 = 1;

0 commit comments

Comments
 (0)