Skip to content
Prev Previous commit
Next Next commit
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
  • Loading branch information
ShabiShett07 authored Jun 15, 2025
commit 43188c3ceab6e3afcf8988e1c0e9324314166dd1
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/dtrmm/lib/dtrmm.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function dtrmm( order, side, uplo, transa, diag, M, N, alpha, A, LDA, B, LDB ) {
throw new TypeError( format( 'invalid argument. Second argument must be a valid side. Value: `%s`.', side ) );
}
if ( !isMatrixTriangle( uplo ) ) {
throw new TypeError( format( 'invalid argument. Thirds argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.', uplo ) );
throw new TypeError( format( 'invalid argument. Third argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.', uplo ) );
}
if ( !isTransposeOperation( transa ) ) {
throw new TypeError( format( 'invalid argument. Fourth argument must specify correct transpose operation. Value: `%s`.', transa ) );
Expand Down
Loading