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 18, 2025
commit 992da865e0bdc45d30a707672496b06386f93654
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/dsymm/lib/dsymm.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ var base = require( './base.js' );
* @param {Float64Array} C - third matrix
* @param {PositiveInteger} LDC - stride of the first dimension of `C` (a.k.a., leading dimension of the matrix `C`)
* @throws {TypeError} first argument must be a valid order
* @throws {TypeError} second argument must be a valid transpose operation
* @throws {TypeError} third argument must be a valid transpose operation
* @throws {TypeError} second argument must be a valid side
* @throws {TypeError} third argument must specify whether the lower or upper triangular matrix is supplied.
* @throws {RangeError} fourth argument must be a nonnegative integer
* @throws {RangeError} fifth argument must be a nonnegative integer
* @throws {RangeError} eighth argument must be greater than or equal to max(1,M) when `A` is on the left of `B` and max(1,N) otherwise
Expand Down
Loading