Skip to content

Commit 856fbac

Browse files
committed
Auto-generated commit
1 parent 15ed893 commit 856fbac

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

CHANGELOG.md

Lines changed: 2 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 (2026-01-14)
7+
## Unreleased (2026-01-15)
88

99
<section class="features">
1010

@@ -709,6 +709,7 @@ A total of 41 issues were closed in this release:
709709

710710
<details>
711711

712+
- [`c9e2fc3`](https://github.com/stdlib-js/stdlib/commit/c9e2fc31d0016bd526c33ca8b3eefb7a6999fb2e) - **docs:** update `ndarray` TypeScript declarations [(#9757)](https://github.com/stdlib-js/stdlib/pull/9757) _(by stdlib-bot)_
712713
- [`01c8ec0`](https://github.com/stdlib-js/stdlib/commit/01c8ec0123460ecfe8cd001e9f3cc2a67ff5b971) - **chore:** fix JavaScript lint errors [(#8565)](https://github.com/stdlib-js/stdlib/pull/8565) _(by kaushal-kumar-it)_
713714
- [`e2c03c0`](https://github.com/stdlib-js/stdlib/commit/e2c03c048787bde4a01ed8b6968ea6437e9e652a) - **docs:** improve doctests for complex number instances in `ndarray/base/unary` [(#8999)](https://github.com/stdlib-js/stdlib/pull/8999) _(by Aryan kumar, Athan Reines)_
714715
- [`51f5eea`](https://github.com/stdlib-js/stdlib/commit/51f5eea4350c3aff97620bda4ff3066935c23e3f) - **docs:** improve doctests for ndarray instances in `ndarray/some-by` [(#9410)](https://github.com/stdlib-js/stdlib/pull/9410) _(by kaushal-kumar-it, Athan Reines)_

docs/types/index.d.ts

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1701,7 +1701,6 @@ interface Namespace {
17011701
* @example
17021702
* var Float64Array = require( '@stdlib/array/float64' );
17031703
* var ndarray = require( './../../ctor' );
1704-
* var ndarray2array = require( './../../to-array' );
17051704
*
17061705
* function scale( z ) {
17071706
* return z * 10.0;
@@ -1719,10 +1718,7 @@ interface Namespace {
17191718
* 'dtype': 'generic'
17201719
* };
17211720
* var y = ns.map( x, opts, scale );
1722-
* // returns <ndarray>
1723-
*
1724-
* var arr = ndarray2array( y );
1725-
* // returns [ [ 20, 30, 40 ], [ 80, 90, 100 ] ]
1721+
* // returns <ndarray>[ [ 20, 30, 40 ], [ 80, 90, 100 ] ]
17261722
*/
17271723
map: typeof map;
17281724

@@ -2622,10 +2618,7 @@ interface Namespace {
26222618
*
26232619
* // Perform reduction:
26242620
* var out = ns.someBy( x, 3, isEven );
2625-
* // returns <ndarray>
2626-
*
2627-
* var v = out.get();
2628-
* // returns true
2621+
* // returns <ndarray>[ true ]
26292622
*
26302623
* @example
26312624
* var Float64Array = require( '@stdlib/array/float64' );
@@ -2655,10 +2648,7 @@ interface Namespace {
26552648
*
26562649
* // Perform reduction:
26572650
* var out = ns.someBy.assign( x, 3, y, isEven );
2658-
* // returns <ndarray>
2659-
*
2660-
* var v = out.get();
2661-
* // returns true
2651+
* // returns <ndarray>[ true ]
26622652
*/
26632653
someBy: typeof someBy;
26642654

0 commit comments

Comments
 (0)