Skip to content

Commit 596ae2e

Browse files
committed
Auto-generated commit
1 parent 47b1727 commit 596ae2e

File tree

2 files changed

+6
-5
lines changed

2 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-09-02)
7+
## Unreleased (2025-09-06)
88

99
<section class="issues">
1010

@@ -24,6 +24,7 @@ This release closes the following issue:
2424

2525
<details>
2626

27+
- [`6bb3c64`](https://github.com/stdlib-js/stdlib/commit/6bb3c64c915bb33715e5256fa8073e46b9a4d443) - **docs:** update examples in TSDoc comments in `utils/async` for doctesting _(by Philipp Burckhardt)_
2728
- [`57b828d`](https://github.com/stdlib-js/stdlib/commit/57b828d10a9b20f3003482557132723a79d27c66) - **chore:** fix JavaScript lint errors [(#8003)](https://github.com/stdlib-js/stdlib/pull/8003) _(by DUDHAT HEMIL PRAVINKUMAR, Athan Reines)_
2829
- [`07f7c05`](https://github.com/stdlib-js/stdlib/commit/07f7c0522c73e6ad9505e1d45035ae439344200d) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
2930
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_

docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ interface InMapAsync {
275275
* };
276276
*
277277
* // Create a `inmapAsync` function which invokes `read` for each collection element sequentially:
278-
* var inmapAsync = factory( opts, read );
278+
* var inmap = inmapAsync.factory( opts, read );
279279
*
280280
* // Create a collection over which to iterate:
281281
* var files = [
@@ -292,7 +292,7 @@ interface InMapAsync {
292292
* }
293293
*
294294
* // Run `read` for each element in `files`:
295-
* inmapAsync( files, done );
295+
* inmap( files, done );
296296
*/
297297
factory<T = unknown, U = unknown, V = unknown>( options: Options<T, U, V>, fcn: Fcn<T, U, V> ): FactoryFunction<T, U>;
298298

@@ -326,7 +326,7 @@ interface InMapAsync {
326326
* }
327327
*
328328
* // Create a `inmapAsync` function which invokes `read` for each collection element sequentially:
329-
* var inmapAsync = factory( read );
329+
* var inmap = inmapAsync.factory( read );
330330
*
331331
* // Create a collection over which to iterate:
332332
* var files = [
@@ -343,7 +343,7 @@ interface InMapAsync {
343343
* }
344344
*
345345
* // Run `read` for each element in `files`:
346-
* inmapAsync( files, done );
346+
* inmap( files, done );
347347
*/
348348
factory<T = unknown, U = unknown, V = unknown>( fcn: Fcn<T, U, V> ): FactoryFunction<T, U>;
349349
}

0 commit comments

Comments
 (0)