Skip to content

Commit 0716976

Browse files
committed
Auto-generated commit
1 parent f6013e5 commit 0716976

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

CHANGELOG.md

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

703703
<details>
704704

705+
- [`7169fdd`](https://github.com/stdlib-js/stdlib/commit/7169fdd88c02203cb5eb31969417c99bff24057f) - **docs:** update `ndarray` TypeScript declaration example code [(#9661)](https://github.com/stdlib-js/stdlib/pull/9661) _(by stdlib-bot)_
705706
- [`426da6e`](https://github.com/stdlib-js/stdlib/commit/426da6ec175dfdb72a9435612069bd5e2819b194) - **test:** add tests to `ndarray/count-truthy` for complete test code coverage [(#9593)](https://github.com/stdlib-js/stdlib/pull/9593) _(by Muhammad Haris, Athan Reines)_
706707
- [`a5a3d29`](https://github.com/stdlib-js/stdlib/commit/a5a3d29ccbc51f322d2f8d84608411e3ebce3d11) - **docs:** improve doctests for ndarray instances in `ndarray/filter` [(#9606)](https://github.com/stdlib-js/stdlib/pull/9606) _(by Harshit Verma, Athan Reines)_
707708
- [`63e3c0c`](https://github.com/stdlib-js/stdlib/commit/63e3c0c70c31fae2111b4dfb4141a3665bc0dea0) - **test:** add tests to `ndarray/find` [(#9311)](https://github.com/stdlib-js/stdlib/pull/9311) _(by Muhammad Haris, Athan Reines, stdlib-bot)_

docs/types/index.d.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1183,7 +1183,6 @@ interface Namespace {
11831183
* var isEven = require( '@stdlib/assert/is-even' ).isPrimitive;
11841184
* var Float64Array = require( '@stdlib/array/float64' );
11851185
* var ndarray = require( './../../ctor' );
1186-
* var ndarray2array = require( './../../to-array' );
11871186
*
11881187
* var buffer = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0 ] );
11891188
* var shape = [ 2, 3 ];
@@ -1197,10 +1196,7 @@ interface Namespace {
11971196
* 'dtype': 'generic'
11981197
* };
11991198
* var y = ns.filter( x, opts, isEven );
1200-
* // returns <ndarray>
1201-
*
1202-
* var arr = ndarray2array( y );
1203-
* // returns [ 2.0, 4.0, 8.0, 10.0 ]
1199+
* // returns <ndarray>[ 2.0, 4.0, 8.0, 10.0 ]
12041200
*/
12051201
filter: typeof filter;
12061202

0 commit comments

Comments
 (0)