Skip to content

Commit 451b9c9

Browse files
committed
Auto-generated commit
1 parent 6254975 commit 451b9c9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

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

257257
<details>
258258

259+
- [`3517633`](https://github.com/stdlib-js/stdlib/commit/3517633448701ec6c74a6b84a32e6cabce1f5d58) - **bench:** refactor to use string interpolation in `array/base/any-by-right` [(#8652)](https://github.com/stdlib-js/stdlib/pull/8652) _(by Aman Singh)_
259260
- [`9c3b5b8`](https://github.com/stdlib-js/stdlib/commit/9c3b5b898d6c0691177e75900bba8125ad89b22f) - **bench:** refactor to use string interpolation in `array/base/any-by` [(#8650)](https://github.com/stdlib-js/stdlib/pull/8650) _(by Aman Singh)_
260261
- [`d745259`](https://github.com/stdlib-js/stdlib/commit/d745259e39acdcc3f80b3b569185491daef92145) - **docs:** add missing spaces and update parameter type _(by Philipp Burckhardt)_
261262
- [`e7054b7`](https://github.com/stdlib-js/stdlib/commit/e7054b7e99fbf83588f207bc7f7fd4d713ba93c1) - **bench:** refactor to use string interpolation in `array/base/any` [(#8649)](https://github.com/stdlib-js/stdlib/pull/8649) _(by Aman Singh)_

base/any-by-right/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2525
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
2626
var isPositiveInteger = require( '@stdlib/assert/is-positive-integer' ).isPrimitive;
2727
var zeros = require( './../../../base/zeros' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var anyByRight = require( './../lib' );
3031

@@ -90,7 +91,7 @@ function main() {
9091
len = pow( 10, i );
9192

9293
f = createBenchmark( len );
93-
bench( pkg+':dtype=generic,len='+len, f );
94+
bench( format( '%s:dtype=generic,len=%d', pkg, len ), f );
9495
}
9596
}
9697

0 commit comments

Comments
 (0)