Skip to content

Commit 9d5b3a9

Browse files
authored
docs: fix dtype
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 23fa0ed commit 9d5b3a9

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/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var strided = require( '@stdlib/blas/ext/base/ssorthp' ).ndarray;
4343
* var ndarray = require( '@stdlib/ndarray/base/ctor' );
4444
*
4545
* var xbuf = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );
46-
* var x = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
46+
* var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
4747
*
4848
* var ord = scalar2ndarray( 1.0, {
4949
* 'dtype': 'generic'

0 commit comments

Comments
 (0)