Skip to content

Commit 3b44cee

Browse files
committed
Auto-generated commit
1 parent 8db0774 commit 3b44cee

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

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

99
<section class="packages">
1010

@@ -42,6 +42,16 @@
4242

4343
<!-- /.features -->
4444

45+
<section class="bug-fixes">
46+
47+
##### Bug Fixes
48+
49+
- [`605c582`](https://github.com/stdlib-js/stdlib/commit/605c5828fe6efeae442d8df17d29404d2acb759f) - update error message
50+
51+
</section>
52+
53+
<!-- /.bug-fixes -->
54+
4555
<section class="breaking-changes">
4656

4757
##### BREAKING CHANGES
@@ -1004,6 +1014,7 @@ This release closes the following issue:
10041014

10051015
##### Bug Fixes
10061016

1017+
- [`0836dce`](https://github.com/stdlib-js/stdlib/commit/0836dce5df85cb2cc185c65ca839aa99f30eb9e1) - update error message
10071018
- [`6f61b2d`](https://github.com/stdlib-js/stdlib/commit/6f61b2dfab95f59ff05a07769b777f5012e1c193) - handle edge case when `dims=[]`
10081019

10091020
</section>
@@ -1435,6 +1446,8 @@ A total of 12 people contributed to this release. Thank you to the following con
14351446

14361447
<details>
14371448

1449+
- [`605c582`](https://github.com/stdlib-js/stdlib/commit/605c5828fe6efeae442d8df17d29404d2acb759f) - **fix:** update error message _(by Athan Reines)_
1450+
- [`0836dce`](https://github.com/stdlib-js/stdlib/commit/0836dce5df85cb2cc185c65ca839aa99f30eb9e1) - **fix:** update error message _(by Athan Reines)_
14381451
- [`a468fa8`](https://github.com/stdlib-js/stdlib/commit/a468fa85dd5a0bdf9bb98fd27fca221cac2cc465) - **feat:** add `every`, `includes`, `unaryAccumulate`, and `unaryReduceSubarray` to namespace [(#6605)](https://github.com/stdlib-js/stdlib/pull/6605) _(by Pravesh Kunwar)_
14391452
- [`1ad09d5`](https://github.com/stdlib-js/stdlib/commit/1ad09d5c9437c763081275186e7517d3739da988) - **chore:** update package meta data [(#6576)](https://github.com/stdlib-js/stdlib/pull/6576) _(by stdlib-bot)_
14401453
- [`b5bff35`](https://github.com/stdlib-js/stdlib/commit/b5bff35c7183d5ccd4cf0349c1a3be06b34e844f) - **docs:** update copy _(by Athan Reines)_

every/lib/validate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function validate( opts, ndims, options ) {
6767
if ( hasOwnProp( options, 'dims' ) ) {
6868
opts.dims = options.dims;
6969
if ( !isIntegerArray( opts.dims ) && !isEmptyCollection( opts.dims ) ) {
70-
return new TypeError( format( 'invalid options. `%s` option must be an array of integers. Option: `%s`.', 'dims', opts.dims ) );
70+
return new TypeError( format( 'invalid option. `%s` option must be an array of integers. Option: `%s`.', 'dims', opts.dims ) );
7171
}
7272
tmp = normalizeIndices( opts.dims, ndims-1 );
7373
if ( tmp === null ) {

includes/lib/validate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function validate( opts, ndims, options ) {
6767
if ( hasOwnProp( options, 'dims' ) ) {
6868
opts.dims = options.dims;
6969
if ( !isIntegerArray( opts.dims ) && !isEmptyCollection( opts.dims ) ) {
70-
return new TypeError( format( 'invalid options. `%s` option must be an array of integers. Option: `%s`.', 'dims', opts.dims ) );
70+
return new TypeError( format( 'invalid option. `%s` option must be an array of integers. Option: `%s`.', 'dims', opts.dims ) );
7171
}
7272
tmp = normalizeIndices( opts.dims, ndims-1 );
7373
if ( tmp === null ) {

0 commit comments

Comments
 (0)