Skip to content

Commit dbbaf1c

Browse files
committed
Auto-generated commit
1 parent 7bf8cda commit dbbaf1c

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
@@ -3524,6 +3524,7 @@ A total of 558 issues were closed in this release:
35243524

35253525
<details>
35263526

3527+
- [`7cf51e4`](https://github.com/stdlib-js/stdlib/commit/7cf51e4f847d45635243db7a8679305e67272511) - **docs:** update `stats` TypeScript declarations [(#9118)](https://github.com/stdlib-js/stdlib/pull/9118) _(by stdlib-bot)_
35273528
- [`94be096`](https://github.com/stdlib-js/stdlib/commit/94be096210ed131627cbefea2f275f8ec416e509) - **docs:** update return annotations to use ndarray instance notation for `stats/maxabs` [(#9084)](https://github.com/stdlib-js/stdlib/pull/9084) _(by Sachin Pangal)_
35283529
- [`76d6b8f`](https://github.com/stdlib-js/stdlib/commit/76d6b8f5bc1907fd716c2ddb93406bba25bc8789) - **feat:** add `stats/nanrange` [(#8956)](https://github.com/stdlib-js/stdlib/pull/8956) _(by Sachin Pangal, Athan Reines, stdlib-bot)_
35293530
- [`0adbf48`](https://github.com/stdlib-js/stdlib/commit/0adbf4895162c92aef25e477c40e53508bd9c999) - **bench:** refactor to use dynamic memory allocation in `stats/strided/dmeanli` [(#9085)](https://github.com/stdlib-js/stdlib/pull/9085) _(by officiallyanee)_

docs/types/index.d.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -426,10 +426,7 @@ interface Namespace {
426426
* var x = array( [ -1.0, 2.0, -3.0 ] );
427427
*
428428
* var y = ns.maxabs( x );
429-
* // returns <ndarray>
430-
*
431-
* var v = y.get();
432-
* // returns 3.0
429+
* // returns <ndarray>[ 3.0 ]
433430
*
434431
* @example
435432
* var array = require( '@stdlib/ndarray/array' );
@@ -439,10 +436,7 @@ interface Namespace {
439436
* var y = zeros( [] );
440437
*
441438
* var out = ns.maxabs.assign( x, y );
442-
* // returns <ndarray>
443-
*
444-
* var v = out.get();
445-
* // returns 3.0
439+
* // returns <ndarray>[ 3.0 ]
446440
*
447441
* var bool = ( out === y );
448442
* // returns true

0 commit comments

Comments
 (0)