Skip to content

Commit a8f0672

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 9eb4c00 commit a8f0672

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/cher/docs/types

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ interface Routine {
7272
* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0 ] );
7373
* var A = new Complex64Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 4.0, 0.0 ] );
7474
*
75-
* cher( 'lower', x.length, 2.0, x, 1, 0, A, 2, 1, 0 );
75+
* cher.ndarray( 'lower', x.length, 2.0, x, 1, 0, A, 2, 1, 0 );
7676
* // A => <Complex64Array>[ 11.0, 0.0, 0.0, 0.0, 24.0, -1.0, 54.0, 0.0 ]
7777
*/
7878
ndarray( uplo: MatrixTriangle, N: number, alpha: number, x: Complex64Array, strideX: number, offsetX: number, A: Complex64Array, strideA1: number, strideA2: number, offsetA: number ): Complex64Array;

0 commit comments

Comments
 (0)