Skip to content

Commit 53ebb5d

Browse files
committed
Auto-generated commit
1 parent ac3c9a0 commit 53ebb5d

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 7 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 (2025-09-10)
7+
## Unreleased (2025-09-11)
88

99
<section class="features">
1010

@@ -365,6 +365,9 @@
365365

366366
### Bug Fixes
367367

368+
- [`8983f46`](https://github.com/stdlib-js/stdlib/commit/8983f46c72781a991814dcf9a6e08db27cd12e39) - use correct variable
369+
- [`69e5523`](https://github.com/stdlib-js/stdlib/commit/69e5523ca6858e8488fe671f61b9a8c16e7044c7) - use correct variable
370+
- [`04c9415`](https://github.com/stdlib-js/stdlib/commit/04c941540b13db13db7f312a6f91dd120940cdc2) - use correct variable
368371
- [`d9d7221`](https://github.com/stdlib-js/stdlib/commit/d9d7221f237eefbf51e55782acc2d068f616d9ae) - remove double semicolon in TypeScript example
369372
- [`ccbe916`](https://github.com/stdlib-js/stdlib/commit/ccbe91618e58d7955db65dcf29cdcb2651408857) - remove stray include
370373
- [`73e569f`](https://github.com/stdlib-js/stdlib/commit/73e569fd71650dbd2c18ce3fec9c373767fcb027) - address assignment bug
@@ -511,6 +514,9 @@ A total of 24 issues were closed in this release:
511514

512515
<details>
513516

517+
- [`8983f46`](https://github.com/stdlib-js/stdlib/commit/8983f46c72781a991814dcf9a6e08db27cd12e39) - **fix:** use correct variable _(by Athan Reines)_
518+
- [`69e5523`](https://github.com/stdlib-js/stdlib/commit/69e5523ca6858e8488fe671f61b9a8c16e7044c7) - **fix:** use correct variable _(by Athan Reines)_
519+
- [`04c9415`](https://github.com/stdlib-js/stdlib/commit/04c941540b13db13db7f312a6f91dd120940cdc2) - **fix:** use correct variable _(by Athan Reines)_
514520
- [`5feedbc`](https://github.com/stdlib-js/stdlib/commit/5feedbcf7d1de8ab6259c96fa39a2fdc50e2c895) - **docs:** do not pass in options object to avoid cast error _(by Philipp Burckhardt)_
515521
- [`da9d08b`](https://github.com/stdlib-js/stdlib/commit/da9d08b99b9662e7421722b5c2af30f6bfb1bbf5) - **docs:** add missing require to TSDoc example code _(by Philipp Burckhardt)_
516522
- [`cfe870b`](https://github.com/stdlib-js/stdlib/commit/cfe870b5ab3798377068aba5e239bf50f730f116) - **feat:** add `ndarray/base/nullary-strided1d-dispatch` [(#7821)](https://github.com/stdlib-js/stdlib/pull/7821) _(by Muhammad Haris, Athan Reines, stdlib-bot)_

base/unary-reduce-strided1d-dispatch-by/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ function UnaryStrided1dDispatchBy( table, idtypes, odtypes, policies ) {
196196
throw new TypeError( format( 'invalid argument. Third argument must be an array of data types. Value: `%s`.', odtypes ) );
197197
}
198198
if ( !isObject( policies ) ) {
199-
throw new TypeError( format( 'invalid argument. Fourth argument must be an object. Value: `%s`.', table ) );
199+
throw new TypeError( format( 'invalid argument. Fourth argument must be an object. Value: `%s`.', policies ) );
200200
}
201201
if ( !isOutputDataTypePolicy( policies.output ) ) {
202202
throw new TypeError( format( 'invalid argument. Fourth argument must be an object having a supported output data type policy. Value: `%s`.', policies.output ) );

base/unary-reduce-strided1d-dispatch/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ function UnaryStrided1dDispatch( table, idtypes, odtypes, policies ) {
192192
throw new TypeError( format( 'invalid argument. Third argument must be an array of data types. Value: `%s`.', odtypes ) );
193193
}
194194
if ( !isObject( policies ) ) {
195-
throw new TypeError( format( 'invalid argument. Fourth argument must be an object. Value: `%s`.', table ) );
195+
throw new TypeError( format( 'invalid argument. Fourth argument must be an object. Value: `%s`.', policies ) );
196196
}
197197
if ( !isOutputDataTypePolicy( policies.output ) ) {
198198
throw new TypeError( format( 'invalid argument. Fourth argument must be an object having a supported output data type policy. Value: `%s`.', policies.output ) );

base/unary-strided1d-dispatch/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ function UnaryStrided1dDispatch( table, idtypes, odtypes, policies, options ) {
197197
throw new TypeError( format( 'invalid argument. Third argument must be an array of data types. Value: `%s`.', odtypes ) );
198198
}
199199
if ( !isObject( policies ) ) {
200-
throw new TypeError( format( 'invalid argument. Fourth argument must be an object. Value: `%s`.', table ) );
200+
throw new TypeError( format( 'invalid argument. Fourth argument must be an object. Value: `%s`.', policies ) );
201201
}
202202
if ( !isOutputDataTypePolicy( policies.output ) ) {
203203
throw new TypeError( format( 'invalid argument. Fourth argument must be an object having a supported output data type policy. Value: `%s`.', policies.output ) );

0 commit comments

Comments
 (0)