Skip to content

Commit 7dff8e1

Browse files
authored
docs: fix constructor name
Signed-off-by: Athan <[email protected]>
1 parent dd74e87 commit 7dff8e1

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/icamax/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* var Complex64Array = require( '@stdlib/array/complex64' );
2828
* var icamax = require( '@stdlib/blas/base/icamax' );
2929
*
30-
* var x = new Float64Array( [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ] );
30+
* var x = new Complex64Array( [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ] );
3131
*
3232
* var idx = icamax( x.length, x, 1 );
3333
* // returns 1

0 commit comments

Comments
 (0)