Skip to content

Commit 239f380

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent df094cb commit 239f380

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function strmm( 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)