Skip to content

Commit f7f6278

Browse files
authored
docs: fix dtype
Signed-off-by: Athan <[email protected]>
1 parent a571aac commit f7f6278

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* var ssorthp = require( '@stdlib/blas/ext/base/ndarray/ssorthp' );
3131
*
3232
* var xbuf = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );
33-
* var x = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
33+
* var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
3434
*
3535
* var ord = scalar2ndarray( 1.0, {
3636
* 'dtype': 'generic'

0 commit comments

Comments
 (0)