Skip to content

Commit 7925070

Browse files
committed
Auto-generated commit
1 parent 24a39d2 commit 7925070

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

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

299299
<details>
300300

301+
- [`6bf62ef`](https://github.com/stdlib-js/stdlib/commit/6bf62efb7fde322edbdf4e0b46a74473dbd62d60) - **refactor:** update error message _(by Athan Reines)_
301302
- [`6464a4b`](https://github.com/stdlib-js/stdlib/commit/6464a4ba00ba9579a2da77a0e2282a0f03bfdc01) - **docs:** update namespace table of contents [(#6828)](https://github.com/stdlib-js/stdlib/pull/6828) _(by stdlib-bot)_
302303
- [`25abfc6`](https://github.com/stdlib-js/stdlib/commit/25abfc67b400f646304fa1f10b239a051f6569f6) - **refactor:** support non-built-in shape and strides objects _(by Athan Reines)_
303304
- [`b087d7b`](https://github.com/stdlib-js/stdlib/commit/b087d7b801c7cae56cb39587b295fb7433638405) - **feat:** add support for enforcing traversal order _(by Athan Reines)_

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ function UnaryStrided1dDispatch( table, idtypes, odtypes, policies ) {
206206
'fcns': ( table.fcns ) ? copy( table.fcns ) : []
207207
};
208208
if ( this._table.types.length !== this._table.fcns.length ) {
209-
throw new Error( 'invalid argument. First argument specifies an unexpected number of types. An input ndarray data type must be specified for each provided strided reduction function.' );
209+
throw new Error( 'invalid argument. First argument specifies an unexpected number of types. An input ndarray data type must be specified for each provided strided function.' );
210210
}
211211
this._idtypes = idtypes;
212212
this._odtypes = odtypes;

0 commit comments

Comments
 (0)