Skip to content

Commit 43188c3

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 574b590 commit 43188c3

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function dtrmm( order, side, uplo, transa, diag, M, N, alpha, A, LDA, B, LDB ) {
8282
throw new TypeError( format( 'invalid argument. Second argument must be a valid side. Value: `%s`.', side ) );
8383
}
8484
if ( !isMatrixTriangle( uplo ) ) {
85-
throw new TypeError( format( 'invalid argument. Thirds argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.', uplo ) );
85+
throw new TypeError( format( 'invalid argument. Third argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.', uplo ) );
8686
}
8787
if ( !isTransposeOperation( transa ) ) {
8888
throw new TypeError( format( 'invalid argument. Fourth argument must specify correct transpose operation. Value: `%s`.', transa ) );

0 commit comments

Comments
 (0)