Skip to content

Commit b03ba80

Browse files
committed
Auto-generated commit
1 parent e3df305 commit b03ba80

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
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

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

656656
<details>
657657

658+
- [`c709856`](https://github.com/stdlib-js/stdlib/commit/c709856b599f53f997353508b5cc1ae2b2bd1b2f) - **docs:** use parameter name from function signature _(by Philipp Burckhardt)_
658659
- [`a0191a5`](https://github.com/stdlib-js/stdlib/commit/a0191a5c95f5f40d8247e1e5679812aef0d81b1c) - **fix:** ensure sentinel value is passed through _(by Athan Reines)_
659660
- [`2e0f8e6`](https://github.com/stdlib-js/stdlib/commit/2e0f8e6476ccc5194c02d472a327fb8a425fdfae) - **feat:** add `ndarray/push` [(#9054)](https://github.com/stdlib-js/stdlib/pull/9054) _(by Muhammad Haris, Athan Reines)_
660661
- [`519b1d3`](https://github.com/stdlib-js/stdlib/commit/519b1d3f8c95f09c8f173083ed52ea0b051b7140) - **fix:** improve type specificity _(by Athan Reines)_

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
273273
274274
-->
275275

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

279279
[stdlib]: https://github.com/stdlib-js/stdlib
280280

push/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ var out = push( x, 5.0, 6.0, 7.0 );
5555

5656
The function accepts the following arguments:
5757

58-
- **arr**: input [ndarray][@stdlib/ndarray/ctor]. Must be one-dimensional.
58+
- **x**: input [ndarray][@stdlib/ndarray/ctor]. Must be one-dimensional.
5959
- **...values**: scalar values to append.
6060

6161
#### push.assign( x, ...values, out )
@@ -78,7 +78,7 @@ var bool = ( out === y );
7878

7979
The function accepts the following arguments:
8080

81-
- **arr**: input [ndarray][@stdlib/ndarray/ctor]. Must be one-dimensional.
81+
- **x**: input [ndarray][@stdlib/ndarray/ctor]. Must be one-dimensional.
8282
- **...values**: scalar values to append.
8383
- **out**: output [ndarray][@stdlib/ndarray/ctor]. Must be one-dimensional.
8484

0 commit comments

Comments
 (0)