@@ -495,7 +495,7 @@ tape( 'the function throws an error if provided an output array which has an inv
495
495
}
496
496
} ) ;
497
497
498
- tape ( 'the function computes the cumulative maximum value over elements in an ndarray (default, row-major)' , function test ( t ) {
498
+ tape ( 'the function computes the cumulative minimum value over elements in an ndarray (default, row-major)' , function test ( t ) {
499
499
var expected ;
500
500
var actual ;
501
501
var xbuf ;
@@ -516,7 +516,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
516
516
t . end ( ) ;
517
517
} ) ;
518
518
519
- tape ( 'the function computes the cumulative maximum value over elements in an ndarray (default, column-major)' , function test ( t ) {
519
+ tape ( 'the function computes the cumulative minimum value over elements in an ndarray (default, column-major)' , function test ( t ) {
520
520
var expected ;
521
521
var actual ;
522
522
var xbuf ;
@@ -537,7 +537,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
537
537
t . end ( ) ;
538
538
} ) ;
539
539
540
- tape ( 'the function computes the cumulative maximum value over elements in an ndarray (all dimensions, row-major)' , function test ( t ) {
540
+ tape ( 'the function computes the cumulative minimum value over elements in an ndarray (all dimensions, row-major)' , function test ( t ) {
541
541
var expected ;
542
542
var actual ;
543
543
var xbuf ;
@@ -560,7 +560,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
560
560
t . end ( ) ;
561
561
} ) ;
562
562
563
- tape ( 'the function computes the cumulative maximum value over elements in an ndarray (all dimensions, column-major)' , function test ( t ) {
563
+ tape ( 'the function computes the cumulative minimum value over elements in an ndarray (all dimensions, column-major)' , function test ( t ) {
564
564
var expected ;
565
565
var actual ;
566
566
var xbuf ;
@@ -583,7 +583,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
583
583
t . end ( ) ;
584
584
} ) ;
585
585
586
- tape ( 'the function computes the cumulative maximum value over elements in an ndarray (no dimensions, row-major)' , function test ( t ) {
586
+ tape ( 'the function computes the cumulative minimum value over elements in an ndarray (no dimensions, row-major)' , function test ( t ) {
587
587
var expected ;
588
588
var actual ;
589
589
var xbuf ;
@@ -606,7 +606,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
606
606
t . end ( ) ;
607
607
} ) ;
608
608
609
- tape ( 'the function computes the cumulative maximum value over elements in an ndarray (no dimensions, column-major)' , function test ( t ) {
609
+ tape ( 'the function computes the cumulative minimum value over elements in an ndarray (no dimensions, column-major)' , function test ( t ) {
610
610
var expected ;
611
611
var actual ;
612
612
var xbuf ;
0 commit comments