Skip to content

Commit d1e87b7

Browse files
committed
Auto-generated commit
1 parent b580872 commit d1e87b7

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
@@ -602,6 +602,7 @@ A total of 27 issues were closed in this release:
602602

603603
<details>
604604

605+
- [`0023e16`](https://github.com/stdlib-js/stdlib/commit/0023e164329d4c737ab86ea2654adec96a217f86) - **refactor:** update error message _(by Athan Reines)_
605606
- [`157f4f4`](https://github.com/stdlib-js/stdlib/commit/157f4f4cd7cc3ce680dbfb538b3d8cbcfe5852dd) - **docs:** update comments _(by Athan Reines)_
606607
- [`17b3ee2`](https://github.com/stdlib-js/stdlib/commit/17b3ee291d0ff12089dcf3ff881771b41325ff28) - **chore:** fix C lint errors [(#8181)](https://github.com/stdlib-js/stdlib/pull/8181) _(by Piyush Goel, Athan Reines)_
607608
- [`cb7cf8c`](https://github.com/stdlib-js/stdlib/commit/cb7cf8ce407731354c5b2861ffa659c8adbc3149) - **feat:** add `ndarray/reverse-dimension` [(#8186)](https://github.com/stdlib-js/stdlib/pull/8186) _(by Muhammad Haris, Athan Reines)_

flatten/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ function flatten( x, options ) {
290290
var y;
291291

292292
if ( !isndarrayLike( x ) ) {
293-
throw new TypeError( format( 'invalid argument. First argument must be an ndarray-like object. Value: `%s`.', x ) );
293+
throw new TypeError( format( 'invalid argument. First argument must be an ndarray. Value: `%s`.', x ) );
294294
}
295295
nargs = arguments.length;
296296
xsh = getShape( x );

0 commit comments

Comments
 (0)