File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff 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)_
Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments