Skip to content

Commit e6c899e

Browse files
committed
Fix type
1 parent 9f2f7cb commit e6c899e

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/incr/minmaxabs/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/incr/minmaxabs/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var abs = require( '@stdlib/math/base/special/abs' );
3131
/**
3232
* Returns an accumulator function which incrementally computes minimum and maximum absolute values.
3333
*
34-
* @param {ArrayLike} [out] - output array
34+
* @param {ArrayLikeObject} [out] - output array
3535
* @throws {TypeError} output argument must be array-like
3636
* @returns {Function} accumulator function
3737
*
@@ -79,7 +79,7 @@ function incrminmaxabs( out ) {
7979
*
8080
* @private
8181
* @param {number} [x] - input value
82-
* @returns {(ArrayLike|null)} output array or null
82+
* @returns {(ArrayLikeObject|null)} output array or null
8383
*/
8484
function accumulator( x ) {
8585
var ax;

0 commit comments

Comments
 (0)