Skip to content

Commit 32897b8

Browse files
committed
Auto-generated commit
1 parent 24c3254 commit 32897b8

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-09-01)
7+
## Unreleased (2025-09-06)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`6bb3c64`](https://github.com/stdlib-js/stdlib/commit/6bb3c64c915bb33715e5256fa8073e46b9a4d443) - **docs:** update examples in TSDoc comments in `utils/async` for doctesting _(by Philipp Burckhardt)_
1516
- [`07f7c05`](https://github.com/stdlib-js/stdlib/commit/07f7c0522c73e6ad9505e1d45035ae439344200d) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
1617
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
1718

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <[email protected]>
4242
Bryan Elee <[email protected]>
4343
Chinmay Joshi <[email protected]>
4444
Christopher Dambamuromo <[email protected]>
45+
DUDHAT HEMIL PRAVINKUMAR <[email protected]>
4546
4647
Daniel Hernandez Gomez <[email protected]>
4748
Daniel Killenberger <[email protected]>

docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ interface ForEachAsync {
258258
* };
259259
*
260260
* // Create a `forEachAsync` function which invokes `read` for each collection element sequentially:
261-
* var forEachAsync = factory( opts, read );
261+
* var forEach = forEachAsync.factory( opts, read );
262262
*
263263
* // Create a collection over which to iterate:
264264
* var files = [
@@ -275,7 +275,7 @@ interface ForEachAsync {
275275
* }
276276
*
277277
* // Run `read` for each element in `files`:
278-
* forEachAsync( files, done );
278+
* forEach( files, done );
279279
*/
280280
factory<T = unknown, V = unknown>( options: Options<T, V>, fcn: Fcn<T, V> ): FactoryFunction;
281281

@@ -309,7 +309,7 @@ interface ForEachAsync {
309309
* }
310310
*
311311
* // Create a `forEachAsync` function which invokes `read` for each collection element sequentially:
312-
* var forEachAsync = factory( read );
312+
* var forEach = forEachAsync.factory( read );
313313
*
314314
* // Create a collection over which to iterate:
315315
* var files = [
@@ -326,7 +326,7 @@ interface ForEachAsync {
326326
* }
327327
*
328328
* // Run `read` for each element in `files`:
329-
* forEachAsync( files, done );
329+
* forEach( files, done );
330330
*/
331331
factory<T = unknown, V = unknown>( fcn: Fcn<T, V> ): FactoryFunction;
332332
}

0 commit comments

Comments
 (0)