Skip to content

Commit 5b448d5

Browse files
committed
Auto-generated commit
1 parent f8f1135 commit 5b448d5

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
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-09-29)
7+
## Unreleased (2025-09-30)
88

99
<section class="features">
1010

@@ -37,6 +37,7 @@
3737

3838
<details>
3939

40+
- [`044d67b`](https://github.com/stdlib-js/stdlib/commit/044d67bba8e2166313bf5f7ec59fa0fee3a3a54c) - **docs:** fix examples [(#8162)](https://github.com/stdlib-js/stdlib/pull/8162) _(by stdlib-bot)_
4041
- [`b7c2031`](https://github.com/stdlib-js/stdlib/commit/b7c20312491bdcf54ffc681e5fe489b9ba3d059c) - **docs:** clean-up TSDoc declaration comments _(by Philipp Burckhardt)_
4142
- [`4f34af5`](https://github.com/stdlib-js/stdlib/commit/4f34af565334a8b431e81bc5325c502529f456c6) - **chore:** remove extra spaces and add missing TSDoc comments _(by Philipp Burckhardt)_
4243
- [`70afd90`](https://github.com/stdlib-js/stdlib/commit/70afd90be6d343a43bcb374f01acc8dd3b8e6899) - **feat:** update `iter` TypeScript declarations _(by Philipp Burckhardt)_

docs/types/index.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -645,9 +645,9 @@ interface Namespace {
645645
* return v > 2;
646646
* }
647647
*
648-
* function assert( v, i ) {
649-
* if ( i > 1 ) {
650-
* throw new Error( 'unexpected error' );
648+
* function assert( v ) {
649+
* if ( v !== v ) {
650+
* throw new Error( 'should not be NaN' );
651651
* }
652652
* }
653653
*
@@ -693,9 +693,9 @@ interface Namespace {
693693
* return v < 3;
694694
* }
695695
*
696-
* function assert( v, i ) {
697-
* if ( i > 1 ) {
698-
* throw new Error( 'unexpected error' );
696+
* function assert( v ) {
697+
* if ( v !== v ) {
698+
* throw new Error( 'should not be NaN' );
699699
* }
700700
* }
701701
*
@@ -1784,7 +1784,7 @@ interface Namespace {
17841784
* // returns 1
17851785
*
17861786
* r = iter.next().value;
1787-
* // returns 2
1787+
* // returns 3
17881788
*
17891789
* // ...
17901790
*/

0 commit comments

Comments
 (0)