Skip to content

Commit ac38499

Browse files
committed
Auto-generated commit
1 parent 9da4022 commit ac38499

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

CHANGELOG.md

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

35243524
<details>
35253525

3526+
- [`1bb0a07`](https://github.com/stdlib-js/stdlib/commit/1bb0a0711118f948aa9e719f61c360fef7f540f9) - **docs:** update examples [(#9075)](https://github.com/stdlib-js/stdlib/pull/9075) _(by stdlib-bot)_
35263527
- [`769ab89`](https://github.com/stdlib-js/stdlib/commit/769ab89a85f7c5c5be06e4b49c1cc69f8b528d15) - **feat:** add `stats/nanrange-by` [(#9006)](https://github.com/stdlib-js/stdlib/pull/9006) _(by Sachin Pangal, Athan Reines)_
35273528
- [`1bbae9f`](https://github.com/stdlib-js/stdlib/commit/1bbae9f0b9cb70547c20d29095361d3b28002b7e) - **feat:** add `stats/base/ndarray/snanrange` [(#8979)](https://github.com/stdlib-js/stdlib/pull/8979) _(by Sachin Pangal)_
35283529
- [`1a8cc79`](https://github.com/stdlib-js/stdlib/commit/1a8cc797c3adce4d19378ab7eb85323272472164) - **docs:** update return annotations to use ndarray instance notation in `stats/range-by` [(#8939)](https://github.com/stdlib-js/stdlib/pull/8939) _(by Sachin Pangal, Athan Reines)_

docs/types/index.d.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -392,10 +392,7 @@ interface Namespace {
392392
* }
393393
*
394394
* var y = ns.maxBy( x, clbk );
395-
* // returns <ndarray>
396-
*
397-
* var v = y.get();
398-
* // returns 4.0
395+
* // returns <ndarray>[ 4.0 ]
399396
*
400397
* @example
401398
* var array = require( '@stdlib/ndarray/array' );
@@ -409,10 +406,7 @@ interface Namespace {
409406
* }
410407
*
411408
* var out = ns.maxBy.assign( x, y, clbk );
412-
* // returns <ndarray>
413-
*
414-
* var v = out.get();
415-
* // returns 4.0
409+
* // returns <ndarray>[ 4.0 ]
416410
*
417411
* var bool = ( out === y );
418412
* // returns true

0 commit comments

Comments
 (0)