Skip to content

Commit 1be7cf6

Browse files
committed
Auto-generated commit
1 parent 51681dc commit 1be7cf6

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
@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`acc9ca5`](https://github.com/stdlib-js/stdlib/commit/acc9ca54a5182bb8792696aecb1beaca0edddcab) - **bench:** fix passed arguments _(by Karan Anand)_
2526
- [`9972161`](https://github.com/stdlib-js/stdlib/commit/9972161c7c945bf3ab1229fb40129c1107d5918b) - **docs:** replace manual `for` loop in examples _(by Karan Anand)_
2627
- [`8f57742`](https://github.com/stdlib-js/stdlib/commit/8f577423535f8ef0639a0306538771f980af6fbb) - **refactor:** use tuple for return type _(by Karan Anand)_
2728
- [`fe35e83`](https://github.com/stdlib-js/stdlib/commit/fe35e83251890e69ae041104dfcefa9bcfbbd37a) - **feat:** add C implementation for `math/base/special/minmaxabs` [(#6983)](https://github.com/stdlib-js/stdlib/pull/6983) _(by Karan Anand)_

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)