Skip to content

Commit 93583ce

Browse files
committed
Auto-generated commit
1 parent 01b7826 commit 93583ce

2 files changed

Lines changed: 5 additions & 10 deletions

File tree

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 (2025-12-23)
7+
## Unreleased (2025-12-24)
88

99
<section class="features">
1010

@@ -659,6 +659,7 @@ A total of 37 issues were closed in this release:
659659

660660
<details>
661661

662+
- [`fdd3aa1`](https://github.com/stdlib-js/stdlib/commit/fdd3aa1bd398edec9c30a05569b05a3aba1897ec) - **docs:** update `ndarray` TypeScript declarations [(#9335)](https://github.com/stdlib-js/stdlib/pull/9335) _(by stdlib-bot)_
662663
- [`46d9a44`](https://github.com/stdlib-js/stdlib/commit/46d9a441ddf70ca13ac2a8d61cf54c628876e537) - **docs:** improve doctests for ndarray instances in `ndarray/count-falsy` _(by Athan Reines)_
663664
- [`50ec01b`](https://github.com/stdlib-js/stdlib/commit/50ec01b7e6b99e92e033199246bae378a10ee479) - **style:** fix missing space _(by Athan Reines)_
664665
- [`a799baf`](https://github.com/stdlib-js/stdlib/commit/a799bafe59b868a07c99266ca494074a8037ce67) - **docs:** update examples _(by Athan Reines)_

docs/types/index.d.ts

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -606,10 +606,7 @@ interface Namespace {
606606
*
607607
* // Perform reduction:
608608
* var out = ns.countFalsy( x );
609-
* // returns <ndarray>
610-
*
611-
* var v = out.get();
612-
* // returns 1
609+
* // returns <ndarray>[ 1 ]
613610
*
614611
* @example
615612
* var Float64Array = require( '@stdlib/array/float64' );
@@ -638,10 +635,7 @@ interface Namespace {
638635
*
639636
* // Perform reduction:
640637
* var out = ns.countFalsy.assign( x, y );
641-
* // returns <ndarray>
642-
*
643-
* var v = out.get();
644-
* // returns 1
638+
* // returns <ndarray>[ 1 ]
645639
*/
646640
countFalsy: typeof countFalsy;
647641

@@ -1285,7 +1279,7 @@ interface Namespace {
12851279
* @param options - function options
12861280
* @param options.dims - list of dimensions over which to perform a reduction
12871281
* @param options.keepdims - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions (default: false)
1288-
* @param options.sentinelValue - sentinel value
1282+
* @param options.sentinel - sentinel value
12891283
* @param predicate - predicate function
12901284
* @param thisArg - predicate execution context
12911285
* @returns output ndarray

0 commit comments

Comments
 (0)