Skip to content

Commit 18c1983

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 8ff64f4 commit 18c1983

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

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

0 commit comments

Comments
 (0)