Skip to content

Commit ab83bf2

Browse files
committed
Auto-generated commit
1 parent 690583d commit ab83bf2

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-01-12)
7+
## Unreleased (2026-01-13)
88

99
<section class="features">
1010

@@ -44,9 +44,9 @@
4444

4545
### Closed Issues
4646

47-
A total of 6 issues were closed in this release:
47+
A total of 7 issues were closed in this release:
4848

49-
[#2647](https://github.com/stdlib-js/stdlib/issues/2647), [#5045](https://github.com/stdlib-js/stdlib/issues/5045), [#8100](https://github.com/stdlib-js/stdlib/issues/8100), [#8567](https://github.com/stdlib-js/stdlib/issues/8567), [#8593](https://github.com/stdlib-js/stdlib/issues/8593), [#8670](https://github.com/stdlib-js/stdlib/issues/8670)
49+
[#2647](https://github.com/stdlib-js/stdlib/issues/2647), [#5045](https://github.com/stdlib-js/stdlib/issues/5045), [#8100](https://github.com/stdlib-js/stdlib/issues/8100), [#8567](https://github.com/stdlib-js/stdlib/issues/8567), [#8593](https://github.com/stdlib-js/stdlib/issues/8593), [#8670](https://github.com/stdlib-js/stdlib/issues/8670), [#9715](https://github.com/stdlib-js/stdlib/issues/9715)
5050

5151
</section>
5252

@@ -58,6 +58,7 @@ A total of 6 issues were closed in this release:
5858

5959
<details>
6060

61+
- [`24c8448`](https://github.com/stdlib-js/stdlib/commit/24c84489858238aac982a4560b69a50634e71c60) - **chore:** fix JavaScript lint errors [(#9719)](https://github.com/stdlib-js/stdlib/pull/9719) _(by Shubham)_
6162
- [`a3ddcf5`](https://github.com/stdlib-js/stdlib/commit/a3ddcf5aeb332dd504ec46745807dcdd6d52474e) - **docs:** update REPL namespace documentation [(#9701)](https://github.com/stdlib-js/stdlib/pull/9701) _(by stdlib-bot)_
6263
- [`e882812`](https://github.com/stdlib-js/stdlib/commit/e882812a788d6648dd848e9e5667a11a1878bb3d) - **docs:** update REPL namespace documentation [(#9689)](https://github.com/stdlib-js/stdlib/pull/9689) _(by stdlib-bot, Philipp Burckhardt)_
6364
- [`d2b039b`](https://github.com/stdlib-js/stdlib/commit/d2b039b4d16169fa7e6c43ebbbda7300c2391a74) - **docs:** update REPL namespace documentation [(#9662)](https://github.com/stdlib-js/stdlib/pull/9662) _(by stdlib-bot, Philipp Burckhardt)_
@@ -317,7 +318,7 @@ A total of 6 issues were closed in this release:
317318

318319
### Contributors
319320

320-
A total of 9 people contributed to this release. Thank you to the following contributors:
321+
A total of 10 people contributed to this release. Thank you to the following contributors:
321322

322323
- Athan Reines
323324
- Divyanshu
@@ -326,6 +327,7 @@ A total of 9 people contributed to this release. Thank you to the following cont
326327
- Philipp Burckhardt
327328
- Rohit R Bhat
328329
- Shivam Mittal
330+
- Shubham
329331
- Snehil Shah
330332
- Vinit Pandit
331333

presentation/lib/commands/next.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ function command( pres ) {
3737
*/
3838
function onCommand() {
3939
pres._repl.once( 'drain', onDrain ); // eslint-disable-line no-underscore-dangle
40+
}
4041

41-
/**
42-
* Callback invoked upon a `drain` event.
43-
*
44-
* @private
45-
*/
46-
function onDrain() {
47-
pres.next().show();
48-
}
42+
/**
43+
* Callback invoked upon a `drain` event.
44+
*
45+
* @private
46+
*/
47+
function onDrain() {
48+
pres.next().show();
4949
}
5050
}
5151

0 commit comments

Comments
 (0)