Skip to content

Commit f4d6b9c

Browse files
committed
Auto-generated commit
1 parent aa272e6 commit f4d6b9c

14 files changed

+20
-19
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-07-01)
7+
## Unreleased (2024-07-07)
88

99
<section class="features">
1010

@@ -38,6 +38,7 @@
3838

3939
<details>
4040

41+
- [`659f752`](https://github.com/stdlib-js/stdlib/commit/659f752db18317bf5fc237fdbcad0d74b61e1ed9) - **style:** add missing spaces _(by Philipp Burckhardt)_
4142
- [`6b0e763`](https://github.com/stdlib-js/stdlib/commit/6b0e763f6763fcad684f7cc82bb3300837dad71b) - **docs:** update example and add return description [(#2489)](https://github.com/stdlib-js/stdlib/pull/2489) _(by Jaysukh Makvana)_
4243
- [`61c5609`](https://github.com/stdlib-js/stdlib/commit/61c5609ba30f3b07cd97089746a5dca25a614d94) - **docs:** fix examples in REPL documentation for complex number arrays [(#2431)](https://github.com/stdlib-js/stdlib/pull/2431) _(by Jaysukh Makvana)_
4344
- [`cc06b5c`](https://github.com/stdlib-js/stdlib/commit/cc06b5c8c67a1c8d1022920273535b29e5abf550) - **fix:** add missing generic parameter _(by Athan Reines)_

benchmark/benchmark.fill.length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var pow = require( '@stdlib/math-base-special-pow' );
2525
var Complex64 = require( '@stdlib/complex-float32-ctor' );
26-
var isComplex64Array = require('@stdlib/assert-is-complex64array');
26+
var isComplex64Array = require( '@stdlib/assert-is-complex64array' );
2727
var pkg = require( './../package.json' ).name;
2828
var Complex64Array = require( './../lib' );
2929

benchmark/benchmark.keys.length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var pow = require( '@stdlib/math-base-special-pow' );
2525
var Complex64 = require( '@stdlib/complex-float32-ctor' );
26-
var isIteratorLike = require('@stdlib/assert-is-iterator-like');
26+
var isIteratorLike = require( '@stdlib/assert-is-iterator-like' );
2727
var pkg = require( './../package.json' ).name;
2828
var Complex64Array = require( './../lib' );
2929

benchmark/benchmark.map.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var bench = require( '@stdlib/bench-harness' );
2424
var isComplex64Array = require( '@stdlib/assert-is-complex64array' );
2525
var realf = require( '@stdlib/complex-realf' );
2626
var imagf = require( '@stdlib/complex-imagf' );
27-
var Complex64 = require('@stdlib/complex-float32-ctor');
27+
var Complex64 = require( '@stdlib/complex-float32-ctor' );
2828
var pkg = require( './../package.json' ).name;
2929
var Complex64Array = require( './../lib' );
3030

benchmark/benchmark.reduce.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
var bench = require( '@stdlib/bench-harness' );
2424
var caddf = require( '@stdlib/math-base-ops-caddf' );
25-
var isComplexLike = require('@stdlib/assert-is-complex-like');
25+
var isComplexLike = require( '@stdlib/assert-is-complex-like' );
2626
var pkg = require( './../package.json' ).name;
2727
var Complex64Array = require( './../lib' );
2828

benchmark/benchmark.reduce.length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var pow = require( '@stdlib/math-base-special-pow' );
2525
var caddf = require( '@stdlib/math-base-ops-caddf' );
26-
var isComplexLike = require('@stdlib/assert-is-complex-like');
26+
var isComplexLike = require( '@stdlib/assert-is-complex-like' );
2727
var Complex64 = require( '@stdlib/complex-float32-ctor' );
2828
var pkg = require( './../package.json' ).name;
2929
var Complex64Array = require( './../lib' );

benchmark/benchmark.values.length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var pow = require( '@stdlib/math-base-special-pow' );
2525
var Complex64 = require( '@stdlib/complex-float32-ctor' );
26-
var isIteratorLike = require('@stdlib/assert-is-iterator-like');
26+
var isIteratorLike = require( '@stdlib/assert-is-iterator-like' );
2727
var pkg = require( './../package.json' ).name;
2828
var Complex64Array = require( './../lib' );
2929

test/test.every.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ tape( 'the method supports providing an execution context', function test( t ) {
164164
bool = arr.every( predicate, ctx );
165165

166166
t.strictEqual( bool, true, 'returns expected value' );
167-
t.strictEqual( ctx.count, 3, 'returns expected value');
167+
t.strictEqual( ctx.count, 3, 'returns expected value' );
168168

169169
t.end();
170170

test/test.find.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ tape( 'the method supports providing an execution context', function test( t ) {
164164
arr = new Complex64Array( [ 1.0, -1.0, 2.0, -2.0, 3.0, 3.0 ] );
165165
z = arr.find( predicate, ctx );
166166

167-
t.strictEqual( realf( z ), 3, 'returns expected value');
168-
t.strictEqual( imagf( z ), 3, 'returns expected value');
169-
t.strictEqual( ctx.count, 3, 'returns expected value');
167+
t.strictEqual( realf( z ), 3, 'returns expected value' );
168+
t.strictEqual( imagf( z ), 3, 'returns expected value' );
169+
t.strictEqual( ctx.count, 3, 'returns expected value' );
170170

171171
t.end();
172172

test/test.find_last.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ tape( 'the method supports providing an execution context', function test( t ) {
164164
arr = new Complex64Array( [ 1.0, -1.0, 2.0, -2.0, 3.0, 3.0 ] );
165165
z = arr.findLast( predicate, ctx );
166166

167-
t.strictEqual( realf( z ), 3, 'returns expected value');
168-
t.strictEqual( imagf( z ), 3, 'returns expected value');
169-
t.strictEqual( ctx.count, 1, 'returns expected value');
167+
t.strictEqual( realf( z ), 3, 'returns expected value' );
168+
t.strictEqual( imagf( z ), 3, 'returns expected value' );
169+
t.strictEqual( ctx.count, 1, 'returns expected value' );
170170

171171
t.end();
172172

0 commit comments

Comments
 (0)