Skip to content

Commit 87aac20

Browse files
committed
Auto-generated commit
1 parent a7f449c commit 87aac20

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-08-25)
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
- [`11581aa`](https://github.com/stdlib-js/stdlib/commit/11581aaca8c3cb824cbb92c0c0f80e76890bdb20) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
1617
- [`07f7c05`](https://github.com/stdlib-js/stdlib/commit/07f7c0522c73e6ad9505e1d45035ae439344200d) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
1718
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <brunofenzl@gmail.com>
4242
Bryan Elee <rxbryn@gmail.com>
4343
Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
4444
Christopher Dambamuromo <chridam@gmail.com>
45+
DUDHAT HEMIL PRAVINKUMAR <138382078+Hemil36@users.noreply.github.com>
4546
Dan Rose <danoftheroses@gmail.com>
4647
Daniel Hernandez Gomez <156333015+dhernandeez13@users.noreply.github.com>
4748
Daniel Killenberger <daniel.killenberger@gmail.com>

docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ interface AnyByAsync {
260260
* };
261261
*
262262
* // Create a `anyByAsync` function which invokes the predicate function for each collection element sequentially:
263-
* var anyByAsync = factory( opts, predicate );
263+
* var anyBy = anyByAsync.factory( opts, predicate );
264264
*
265265
* // Create a collection over which to iterate:
266266
* var files = [
@@ -281,7 +281,7 @@ interface AnyByAsync {
281281
* }
282282
*
283283
* // Try to read each element in `files`:
284-
* anyByAsync( files, done );
284+
* anyBy( files, done );
285285
*/
286286
factory<T = unknown, V = unknown>( options: Options<T, V>, predicate: Predicate<T, V> ): FactoryFunction<T>;
287287

@@ -313,7 +313,7 @@ interface AnyByAsync {
313313
* }
314314
* }
315315
*
316-
* var anyByAsync = factory( predicate );
316+
* var anyBy = anyByAsync.factory( predicate );
317317
*
318318
* // Create a collection over which to iterate:
319319
* var files = [
@@ -334,7 +334,7 @@ interface AnyByAsync {
334334
* }
335335
*
336336
* // Try to read each element in `files`:
337-
* anyByAsync( files, done );
337+
* anyBy( files, done );
338338
*/
339339
factory<T = unknown, V = unknown>( predicate: Predicate<T, V> ): FactoryFunction<T>;
340340
}

0 commit comments

Comments
 (0)