Skip to content

Commit 594f7e8

Browse files
authored
docs: apply suggestions from code review
Signed-off-by: Muhammad Haris <[email protected]>
1 parent b0f7e77 commit 594f7e8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/ext/base/gfind-index/lib/accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @param {NonNegativeInteger} offsetX - starting index
3333
* @param {Callback} clbk - callback function
3434
* @param {*} thisArg - execution context
35-
* @returns {Object} input array object
35+
* @returns {integer} index
3636
*
3737
* @example
3838
* var toAccessorArray = require( '@stdlib/array/base/to-accessor-array' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var ndarray = require( './ndarray.js' );
3434
* @param {integer} strideX - stride length
3535
* @param {Callback} clbk - callback function
3636
* @param {*} [thisArg] - execution context
37-
* @returns {Collection} input array
37+
* @returns {integer} index
3838
*
3939
* @example
4040
* function isEven( v ) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var accessors = require( './accessors.js' );
3535
* @param {NonNegativeInteger} offsetX - starting index
3636
* @param {Callback} clbk - callback function
3737
* @param {*} [thisArg] - execution context
38-
* @returns {Collection} input array
38+
* @returns {integer} index
3939
*
4040
* @example
4141
* function isEven( v ) {

0 commit comments

Comments
 (0)