Skip to content

Commit 98921f0

Browse files
committed
Auto-generated commit
1 parent aa5b36f commit 98921f0

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,7 @@ A total of 46 issues were closed in this release:
506506

507507
<details>
508508

509+
- [`acc9ca5`](https://github.com/stdlib-js/stdlib/commit/acc9ca54a5182bb8792696aecb1beaca0edddcab) - **bench:** fix passed arguments _(by Karan Anand)_
509510
- [`8fd6600`](https://github.com/stdlib-js/stdlib/commit/8fd66000cecd700c0ec8b503ea845dd03844ab87) - **feat:** add `math/base/special/minmaxabsf` [(#7043)](https://github.com/stdlib-js/stdlib/pull/7043) _(by Karan Anand, Philipp Burckhardt)_
510511
- [`23b6d1a`](https://github.com/stdlib-js/stdlib/commit/23b6d1a76ac2fcfed45f24561fe32d59bae722b6) - **feat:** add `math/base/special/modff` [(#7101)](https://github.com/stdlib-js/stdlib/pull/7101) _(by Karan Anand)_
511512
- [`a80a512`](https://github.com/stdlib-js/stdlib/commit/a80a51223274109e524c746abf43727607f2b610) - **docs:** fix argument types _(by Karan Anand)_

base/special/minmaxabs/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ bench( pkg+'::minabs,maxabs', function benchmark( b ) {
9292

9393
b.tic();
9494
for ( i = 0; i < b.iterations; i++ ) {
95-
z = [ minabs( x[ i%x.length ], y[ i%y.length ] ), maxabs( x, y ) ];
95+
z = [ minabs( x[ i%x.length ], y[ i%y.length ] ), maxabs( x[ i%x.length ], y[ i%y.length ] ) ];
9696
if ( z.length !== 2 ) {
9797
b.fail( 'should have expected length' );
9898
}

0 commit comments

Comments
 (0)