Skip to content

Commit 09208a0

Browse files
committed
fix docs/types doctest example
1 parent b9ce163 commit 09208a0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/blas/base/strsv/docs/types

lib/node_modules/@stdlib/blas/base/strsv/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ interface Routine {
7373
* var A = new Float32Array( [ 1.0, 2.0, 3.0, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0 ] ); // => [ [ 1.0, 2.0, 3.0 ], [ 0.0, 1.0, 2.0 ], [ 0.0, 0.0, 1.0 ] ]
7474
* var x = new Float32Array( [ 1.0, 2.0, 3.0 ] );
7575
*
76-
* strsv.ndarray( 'lower', 'no-transpose', 'unit', 3, A, 3, 1, 0, x, 1, 0 );
76+
* strsv.ndarray( 'upper', 'no-transpose', 'unit', 3, A, 3, 1, 0, x, 1, 0 );
7777
* // x => <Float32Array>[ 0.0, -4.0, 3.0 ]
7878
*/
7979
ndarray( uplo: MatrixTriangle, trans: TransposeOperation, diag: DiagonalType, N: number, A: Float32Array, strideA1: number, strideA2: number, offsetA: number, x: Float32Array, strideX: number, offsetX: number ): Float32Array;

0 commit comments

Comments
 (0)