Skip to content

Commit 4456c97

Browse files
committed
Auto-generated commit
1 parent c1545fb commit 4456c97

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

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

724724
<details>
725725

726+
- [`c625294`](https://github.com/stdlib-js/stdlib/commit/c62529438c8dbed914895384c48a0fb27edbf956) - **bench:** refactor to use string interpolation in `math/array/special/abs` [(#11091)](https://github.com/stdlib-js/stdlib/pull/11091) _(by Partha Das)_
726727
- [`2c843b8`](https://github.com/stdlib-js/stdlib/commit/2c843b85223c779af86697cef8522f3f6d955976) - **bench:** refactor to use string interpolation in `math/strided/special/abs` [(#11092)](https://github.com/stdlib-js/stdlib/pull/11092) _(by Partha Das)_
727728
- [`68a70e3`](https://github.com/stdlib-js/stdlib/commit/68a70e3e372c8c4c625977401a67d9ab4d9b9ae3) - **bench:** refactor to use string interpolation in `math/strided/ops/sub` [(#11093)](https://github.com/stdlib-js/stdlib/pull/11093) _(by Partha Das)_
728729
- [`dc2ab17`](https://github.com/stdlib-js/stdlib/commit/dc2ab175c0358e31a4e1702c73d4c91c1a6c4e6b) - **chore:** fix JavaScript lint errors [(#11015)](https://github.com/stdlib-js/stdlib/pull/11015) _(by Baixiaochun, Athan Reines)_

array/special/abs/benchmark/benchmark.assign.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var isnan = require( './../../../../base/assert/is-nan' );
2525
var pow = require( './../../../../base/special/pow' );
2626
var uniform = require( '@stdlib/random/array/uniform' );
2727
var zeros = require( '@stdlib/array/zeros' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var abs = require( './../lib' );
3031

@@ -100,7 +101,7 @@ function main() {
100101
for ( i = min; i <= max; i++ ) {
101102
len = pow( 10, i );
102103
f = createBenchmark( len );
103-
bench( pkg+':assign:len='+len, f );
104+
bench( format( '%s:assign:len=%d', pkg, len ), f );
104105
}
105106
}
106107

array/special/abs/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var isnan = require( './../../../../base/assert/is-nan' );
2525
var pow = require( './../../../../base/special/pow' );
2626
var uniform = require( '@stdlib/random/array/uniform' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var abs = require( './../lib' );
2930

@@ -95,7 +96,7 @@ function main() {
9596
for ( i = min; i <= max; i++ ) {
9697
len = pow( 10, i );
9798
f = createBenchmark( len );
98-
bench( pkg+':len='+len, f );
99+
bench( format( '%s:len=%d', pkg, len ), f );
99100
}
100101
}
101102

0 commit comments

Comments
 (0)