File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lib/node_modules/@stdlib/stats/incr/minmaxabs/lib Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ var abs = require( '@stdlib/math/base/special/abs' );
31
31
/**
32
32
* Returns an accumulator function which incrementally computes minimum and maximum absolute values.
33
33
*
34
- * @param {ArrayLike } [out] - output array
34
+ * @param {ArrayLikeObject } [out] - output array
35
35
* @throws {TypeError } output argument must be array-like
36
36
* @returns {Function } accumulator function
37
37
*
@@ -79,7 +79,7 @@ function incrminmaxabs( out ) {
79
79
*
80
80
* @private
81
81
* @param {number } [x] - input value
82
- * @returns {(ArrayLike |null) } output array or null
82
+ * @returns {(ArrayLikeObject |null) } output array or null
83
83
*/
84
84
function accumulator ( x ) {
85
85
var ax ;
You can’t perform that action at this time.
0 commit comments