Skip to content

Commit f8f1135

Browse files
committed
Auto-generated commit
1 parent 961a9c3 commit f8f1135

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
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-24)
7+
## Unreleased (2025-09-29)
88

99
<section class="features">
1010

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

3838
<details>
3939

40+
- [`b7c2031`](https://github.com/stdlib-js/stdlib/commit/b7c20312491bdcf54ffc681e5fe489b9ba3d059c) - **docs:** clean-up TSDoc declaration comments _(by Philipp Burckhardt)_
4041
- [`4f34af5`](https://github.com/stdlib-js/stdlib/commit/4f34af565334a8b431e81bc5325c502529f456c6) - **chore:** remove extra spaces and add missing TSDoc comments _(by Philipp Burckhardt)_
4142
- [`70afd90`](https://github.com/stdlib-js/stdlib/commit/70afd90be6d343a43bcb374f01acc8dd3b8e6899) - **feat:** update `iter` TypeScript declarations _(by Philipp Burckhardt)_
4243
- [`78620b6`](https://github.com/stdlib-js/stdlib/commit/78620b6184bd362245406d3c6af826455a0b78fc) - **chore:** disable lint directives _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
223223
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
224224
Yugal Kaushik <yugalkaushik14@gmail.com>
225225
Yuvi Mittal <128018763+yuvi-mittal@users.noreply.github.com>
226+
Zuhair Ahmad <157193652+Zuhair-CS@users.noreply.github.com>
226227
deepak427 <62477872+deepak427@users.noreply.github.com>
227228
devshree-bhati <147095250+devshree-bhati@users.noreply.github.com>
228229
ditsu <170345142+ditsus@users.noreply.github.com>

do-until-each/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ type Predicate = nullaryPredicate | unaryPredicate | binaryPredicate;
116116
* return v > 2;
117117
* }
118118
*
119-
* function assert( v, i ) {
120-
* if ( i > 1 ) {
121-
* throw new Error( 'unexpected error' );
119+
* function assert( v ) {
120+
* if ( v !== v ) {
121+
* throw new Error( 'should not be NaN' );
122122
* }
123123
* }
124124
*

do-until-each/docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ function predicate( v: unknown, i: number ): boolean {
5757
*
5858
* @param v - iterated value
5959
* @param i - iteration index
60-
* @returns callback result
6160
*/
6261
function fcn( v: unknown, i: number ): void {
6362
if ( v !== v || i !== i ) {

do-while-each/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ type Predicate = nullaryPredicate | unaryPredicate | binaryPredicate;
117117
* return v < 3;
118118
* }
119119
*
120-
* function assert( v, i ) {
121-
* if ( i > 1 ) {
122-
* throw new Error( 'unexpected error' );
120+
* function assert( v ) {
121+
* if ( v !== v ) {
122+
* throw new Error( 'should not be NaN' );
123123
* }
124124
* }
125125
*

do-while-each/docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ function predicate( v: any, i: number ): boolean {
5757
*
5858
* @param v - iterated value
5959
* @param i - iteration index
60-
* @returns callback result
6160
*/
6261
function fcn( v: any, i: number ): any {
6362
if ( v !== v || i !== i ) {

logspace/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ interface Options {
5252
* @returns iterator
5353
*
5454
* @example
55-
* var iter = iterLogspace( 0, 1000, 4 );
55+
* var iter = iterLogspace( 0, 3, 4 );
5656
*
5757
* var v = iter.next().value;
5858
* // returns 1

strided-by/docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ type Callback = Nullary | Unary | Binary | Ternary | Quaternary;
117117
* // returns 1
118118
*
119119
* r = iter.next().value;
120-
* // returns 2
120+
* // returns 3
121121
*
122122
* r = iter.next().value;
123-
* // returns 4
123+
* // returns 7
124124
*
125125
* // ...
126126
*/
@@ -161,10 +161,10 @@ declare function iterStridedBy( iterator: Iterator, fcn: Callback, offset?: numb
161161
* // returns 1
162162
*
163163
* r = iter.next().value;
164-
* // returns 2
164+
* // returns 3
165165
*
166166
* r = iter.next().value;
167-
* // returns 4
167+
* // returns 7
168168
*
169169
* // ...
170170
*/
@@ -207,7 +207,7 @@ declare function iterStridedBy( iterator: Iterator, fcn: Callback, offset?: numb
207207
* // returns 1
208208
*
209209
* r = iter.next().value;
210-
* // returns 2
210+
* // returns 3
211211
*
212212
* // ...
213213
*/

0 commit comments

Comments
 (0)