Skip to content

Commit 4c956ca

Browse files
committed
docs: fix JSDoc type
1 parent b0cd1b9 commit 4c956ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/index-of/lib/assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var DEFAULT_DTYPE = defaults.get( 'dtypes.integer_index' );
5050
* @param {(ndarrayLike|integer)} [fromIndex] - index from which to begin searching
5151
* @param {ndarrayLike} out - output ndarray
5252
* @param {Options} [options] - function options
53-
* @param {IntegerArray} [options.dim=-1] - dimension over which to perform operation
53+
* @param {integer} [options.dim=-1] - dimension over which to perform operation
5454
* @throws {TypeError} function must be provided at least three arguments
5555
* @throws {TypeError} first argument must be an ndarray-like object
5656
* @throws {TypeError} third argument must be either an ndarray-like object or an integer

lib/node_modules/@stdlib/blas/ext/index-of/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var DEFAULT_DTYPE = defaults.get( 'dtypes.integer_index' );
4949
* @param {(ndarrayLike|*)} searchElement - search element
5050
* @param {(ndarrayLike|integer)} [fromIndex] - index from which to begin searching
5151
* @param {Options} [options] - function options
52-
* @param {IntegerArray} [options.dim=-1] - dimension over which to perform operation
52+
* @param {integer} [options.dim=-1] - dimension over which to perform operation
5353
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
5454
* @param {string} [options.dtype] - output ndarray data type
5555
* @throws {TypeError} first argument must be an ndarray-like object

0 commit comments

Comments
 (0)