Skip to content

Commit bcc599d

Browse files
committed
Auto-generated commit
1 parent 3fe99c0 commit bcc599d

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-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-18)
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: 2 additions & 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>
@@ -189,6 +190,7 @@ Sivam Das <100067002+Sivam2313@users.noreply.github.com>
189190
Snehil Shah <snehilshah.989@gmail.com>
190191
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
191192
Spandan Barve <contact@marsian.dev>
193+
Srinivas Batthula <srinivasbatthula05.official@gmail.com>
192194
Stephannie Jiménez Gacha <steff456@hotmail.com>
193195
Suhaib Ilahi <suhaib.elahi87@gmail.com>
194196
Suraj Kumar <125961509+kumarsuraj212003@users.noreply.github.com>

docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ interface ReduceRightAsync {
271271
* };
272272
*
273273
* // Create a `reduceRightAsync` function which invokes `read` for each collection element concurrently:
274-
* var reduceRightAsync = factory( opts, read );
274+
* var reduceRight = reduceRightAsync.factory( opts, read );
275275
*
276276
* // Create a collection over which to iterate:
277277
* var files = [
@@ -291,7 +291,7 @@ interface ReduceRightAsync {
291291
* var acc = {
292292
* 'count': 0
293293
* };
294-
* reduceRightAsync( files, acc, done );
294+
* reduceRight( files, acc, done );
295295
*/
296296
factory<T = unknown, U = unknown, V = unknown>( options: Options<T, U, V>, reducer: Reducer<T, U, V> ): FactoryFunction<T, U>;
297297

@@ -325,7 +325,7 @@ interface ReduceRightAsync {
325325
* }
326326
*
327327
* // Create a `reduceRightAsync` function which invokes `read` for each collection element concurrently:
328-
* var reduceRightAsync = factory( read );
328+
* var reduceRight = reduceRightAsync.factory( read );
329329
*
330330
* // Create a collection over which to iterate:
331331
* var files = [
@@ -345,7 +345,7 @@ interface ReduceRightAsync {
345345
* var acc = {
346346
* 'count': 0
347347
* };
348-
* reduceRightAsync( files, acc, done );
348+
* reduceRight( files, acc, done );
349349
*/
350350
factory<T = unknown, U = unknown, V = unknown>( reducer: Reducer<T, U, V> ): FactoryFunction<T, U>;
351351
}

0 commit comments

Comments
 (0)