Skip to content

Commit 76e574a

Browse files
committed
Auto-generated commit
1 parent da5b6f8 commit 76e574a

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
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 (2025-12-19)
7+
## Unreleased (2025-12-20)
88

99
<section class="features">
1010

@@ -3524,6 +3524,7 @@ A total of 558 issues were closed in this release:
35243524

35253525
<details>
35263526

3527+
- [`8e9cdba`](https://github.com/stdlib-js/stdlib/commit/8e9cdba2577c9ef6b349c091450ef90f96e70a77) - **docs:** update examples [(#9270)](https://github.com/stdlib-js/stdlib/pull/9270) _(by stdlib-bot)_
35273528
- [`975697c`](https://github.com/stdlib-js/stdlib/commit/975697c99f123dbf8ca5943c877dd6d99740af02) - **docs:** update return annotations to use ndarray instance notation for `stats/range` [(#9246)](https://github.com/stdlib-js/stdlib/pull/9246) _(by Samarth Kolarkar)_
35283529
- [`ea2e468`](https://github.com/stdlib-js/stdlib/commit/ea2e468ba5638502b1b59cf5d946ba065fae9f7e) - **docs:** update examples [(#9239)](https://github.com/stdlib-js/stdlib/pull/9239) _(by stdlib-bot)_
35293530
- [`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)_

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
248248
249249
-->
250250

251-
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
252-
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
251+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
252+
[chat-url]: https://stdlib.zulipchat.com
253253

254254
[stdlib]: https://github.com/stdlib-js/stdlib
255255

docs/types/index.d.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -750,10 +750,7 @@ interface Namespace {
750750
* var x = array( [ -1.0, 2.0, -3.0 ] );
751751
*
752752
* var y = ns.range( x );
753-
* // returns <ndarray>
754-
*
755-
* var v = y.get();
756-
* // returns 5.0
753+
* // returns <ndarray>[ 5.0 ]
757754
*
758755
* @example
759756
* var array = require( '@stdlib/ndarray/array' );
@@ -763,10 +760,7 @@ interface Namespace {
763760
* var y = zeros( [] );
764761
*
765762
* var out = ns.range.assign( x, y );
766-
* // returns <ndarray>
767-
*
768-
* var v = out.get();
769-
* // returns 5.0
763+
* // returns <ndarray>[ 5.0 ]
770764
*
771765
* var bool = ( out === y );
772766
* // returns true

0 commit comments

Comments
 (0)