Skip to content

Commit 162cdac

Browse files
add support for accessor arrays
1 parent c24a16c commit 162cdac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/cumax/lib/accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' );
4848
* cumax( 4, x, 2, 1, y, 1, 0 );
4949
*
5050
* console.log( y );
51-
* // => [ 1.0, 1.0, 2.0, 4.0, 0.0, 0.0, 0.0, 0.0 ]
51+
* // => toAccessorArray( [ 1.0, 1.0, 2.0, 4.0, 0.0, 0.0, 0.0, 0.0 ] );
5252
*/
5353
function cumax( N, x, strideX, offsetX, y, strideY, offsetY ) {
5454
var xbuf;

0 commit comments

Comments
 (0)