Skip to content

Commit 9880cf4

Browse files
committed
test: fix copy & paste error in description
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent a2556fa commit 9880cf4

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

lib/node_modules/@stdlib/stats/cumin/test/test.assign.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ tape( 'the function throws an error if provided an output array which has an inv
495495
}
496496
});
497497

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 ) {
499499
var expected;
500500
var actual;
501501
var xbuf;
@@ -516,7 +516,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
516516
t.end();
517517
});
518518

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 ) {
520520
var expected;
521521
var actual;
522522
var xbuf;
@@ -537,7 +537,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
537537
t.end();
538538
});
539539

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 ) {
541541
var expected;
542542
var actual;
543543
var xbuf;
@@ -560,7 +560,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
560560
t.end();
561561
});
562562

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 ) {
564564
var expected;
565565
var actual;
566566
var xbuf;
@@ -583,7 +583,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
583583
t.end();
584584
});
585585

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 ) {
587587
var expected;
588588
var actual;
589589
var xbuf;
@@ -606,7 +606,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
606606
t.end();
607607
});
608608

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 ) {
610610
var expected;
611611
var actual;
612612
var xbuf;

lib/node_modules/@stdlib/stats/cumin/test/test.main.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ tape( 'the function throws an error if provided a `dims` option which contains d
322322
}
323323
});
324324

325-
tape( 'the function computes the cumulative maximum value over elements in an ndarray (default, row-major)', function test( t ) {
325+
tape( 'the function computes the cumulative minimum value over elements in an ndarray (default, row-major)', function test( t ) {
326326
var expected;
327327
var actual;
328328
var xbuf;
@@ -343,7 +343,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
343343
t.end();
344344
});
345345

346-
tape( 'the function computes the cumulative maximum value over elements in an ndarray (default, column-major)', function test( t ) {
346+
tape( 'the function computes the cumulative minimum value over elements in an ndarray (default, column-major)', function test( t ) {
347347
var expected;
348348
var actual;
349349
var xbuf;
@@ -364,7 +364,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
364364
t.end();
365365
});
366366

367-
tape( 'the function computes the cumulative maximum value over elements in an ndarray (all dimensions, row-major)', function test( t ) {
367+
tape( 'the function computes the cumulative minimum value over elements in an ndarray (all dimensions, row-major)', function test( t ) {
368368
var expected;
369369
var actual;
370370
var xbuf;
@@ -387,7 +387,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
387387
t.end();
388388
});
389389

390-
tape( 'the function computes the cumulative maximum value over elements in an ndarray (all dimensions, column-major)', function test( t ) {
390+
tape( 'the function computes the cumulative minimum value over elements in an ndarray (all dimensions, column-major)', function test( t ) {
391391
var expected;
392392
var actual;
393393
var xbuf;
@@ -410,7 +410,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
410410
t.end();
411411
});
412412

413-
tape( 'the function computes the cumulative maximum value over elements in an ndarray (no dimensions, row-major)', function test( t ) {
413+
tape( 'the function computes the cumulative minimum value over elements in an ndarray (no dimensions, row-major)', function test( t ) {
414414
var expected;
415415
var actual;
416416
var xbuf;
@@ -433,7 +433,7 @@ tape( 'the function computes the cumulative maximum value over elements in an nd
433433
t.end();
434434
});
435435

436-
tape( 'the function computes the cumulative maximum value over elements in an ndarray (no dimensions, column-major)', function test( t ) {
436+
tape( 'the function computes the cumulative minimum value over elements in an ndarray (no dimensions, column-major)', function test( t ) {
437437
var expected;
438438
var actual;
439439
var xbuf;

0 commit comments

Comments
 (0)