File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/node_modules/@stdlib/ndarray/docs/types Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ import sub2ind = require( '@stdlib/ndarray/sub2ind' );
90
90
import ndarray2array = require( '@stdlib/ndarray/to-array' ) ;
91
91
import ndarray2json = require( '@stdlib/ndarray/to-json' ) ;
92
92
import vector = require( '@stdlib/ndarray/vector' ) ;
93
- import ndarrayWith = require( '@stdlib/ndarray/with' ) ;
93
+ import with = require( '@stdlib/ndarray/with' ) ;
94
94
import zeros = require( '@stdlib/ndarray/zeros' ) ;
95
95
import zerosLike = require( '@stdlib/ndarray/zeros-like' ) ;
96
96
@@ -697,10 +697,10 @@ interface Namespace {
697
697
DataType : typeof DataType ;
698
698
699
699
/**
700
- * Returns a list of ndarray data types .
700
+ * Returns a list of ndarray data type strings .
701
701
*
702
702
* @param kind - data type kind
703
- * @returns list of ndarray data types
703
+ * @returns list of ndarray data type strings
704
704
*
705
705
* @example
706
706
* var list = ns.dtypes();
@@ -2358,7 +2358,7 @@ interface Namespace {
2358
2358
* var v = out.get( 0, 0 );
2359
2359
* // returns 5
2360
2360
*/
2361
- with : typeof ndarrayWith ;
2361
+ with : typeof with ;
2362
2362
2363
2363
/**
2364
2364
* Creates a zero-filled array having a specified shape and data type.
You can’t perform that action at this time.
0 commit comments