Skip to content

Commit 12d79f1

Browse files
committed
Auto-generated commit
1 parent 55379f3 commit 12d79f1

File tree

2 files changed

+5
-16
lines changed

2 files changed

+5
-16
lines changed

CHANGELOG.md

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

35253525
<details>
35263526

3527+
- [`ea2e468`](https://github.com/stdlib-js/stdlib/commit/ea2e468ba5638502b1b59cf5d946ba065fae9f7e) - **docs:** update examples [(#9239)](https://github.com/stdlib-js/stdlib/pull/9239) _(by stdlib-bot)_
35273528
- [`d9ba91b`](https://github.com/stdlib-js/stdlib/commit/d9ba91b874e4ca00243e6d51fff6231d4ab801c2) - **docs:** update return annotations to use ndarray instance notation for `stats/nanminabs` [(#9223)](https://github.com/stdlib-js/stdlib/pull/9223) _(by Sachin Pangal)_
35283529
- [`30ac15d`](https://github.com/stdlib-js/stdlib/commit/30ac15d266224258d0f50599b43506b4745cf5c9) - **docs:** update return annotations to use ndarray instance notation for `stats/nanmin-by` [(#9195)](https://github.com/stdlib-js/stdlib/pull/9195) _(by Sachin Pangal)_
35293530
- [`5b31846`](https://github.com/stdlib-js/stdlib/commit/5b318464d02d50f7bbd373c5d1d158b748937225) - **docs:** update return annotations to use ndarray instance notation for `stats/nanmin` [(#9190)](https://github.com/stdlib-js/stdlib/pull/9190) _(by Sachin Pangal)_

docs/types/index.d.ts

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -616,10 +616,7 @@ interface Namespace {
616616
* var x = array( [ 1.0, NaN, -2.0, 4.0 ] );
617617
*
618618
* var y = ns.nanmean( x );
619-
* // returns <ndarray>
620-
*
621-
* var v = y.get();
622-
* // returns 1.0
619+
* // returns <ndarray>[ 1.0 ]
623620
*
624621
* @example
625622
* var array = require( '@stdlib/ndarray/array' );
@@ -629,10 +626,7 @@ interface Namespace {
629626
* var y = zeros( [] );
630627
*
631628
* var out = ns.nanmean.assign( x, y );
632-
* // returns <ndarray>
633-
*
634-
* var v = out.get();
635-
* // returns 1.0
629+
* // returns <ndarray>[ 1.0 ]
636630
*
637631
* var bool = ( out === y );
638632
* // returns true
@@ -652,10 +646,7 @@ interface Namespace {
652646
* var x = array( [ -1.0, 2.0, NaN ] );
653647
*
654648
* var y = ns.nanmin( x );
655-
* // returns <ndarray>
656-
*
657-
* var v = y.get();
658-
* // returns -1.0
649+
* // returns <ndarray>[ -1.0 ]
659650
*
660651
* @example
661652
* var array = require( '@stdlib/ndarray/array' );
@@ -665,10 +656,7 @@ interface Namespace {
665656
* var y = zeros( [] );
666657
*
667658
* var out = ns.nanmin.assign( x, y );
668-
* // returns <ndarray>
669-
*
670-
* var v = out.get();
671-
* // returns -1.0
659+
* // returns <ndarray>[ -1.0 ]
672660
*
673661
* var bool = ( out === y );
674662
* // returns true

0 commit comments

Comments
 (0)