Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 29, 2024
1 parent d00482b commit 9d7924e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-09-28)
## Unreleased (2024-09-29)

<section class="packages">

Expand Down Expand Up @@ -100,6 +100,7 @@ A total of 3 people contributed to this release. Thank you to the following cont

<details>

- [`2c4e5d8`](https://github.com/stdlib-js/stdlib/commit/2c4e5d824e0c5dc8fd536bf79ff565cee100ce46) - **build:** disable additional lint rule in TS tests _(by Philipp Burckhardt)_
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
- [`b89c97c`](https://github.com/stdlib-js/stdlib/commit/b89c97ce0b812ff0b2aab16b4d77969d44fe3e8c) - **docs:** resolve lint errors in TS declaration files _(by Philipp Burckhardt)_
- [`a59219e`](https://github.com/stdlib-js/stdlib/commit/a59219e11d1951ec26cb44a4972e7616e4d8087f) - **fix:** update import path for collection type _(by Philipp Burckhardt)_
Expand Down
4 changes: 2 additions & 2 deletions map-reduce-right/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function mapper( value: number ): number {
* Reducing function.
*
* @param acc - accumulated value
* @param v - array element
* @param value - array element
* @returns result
*/
function reducer( acc: number, value: number ): number {
Expand Down Expand Up @@ -171,7 +171,7 @@ function reducer( acc: number, value: number ): number {
mapReduceRight(); // $ExpectError
mapReduceRight( arr1 ); // $ExpectError
mapReduceRight( arr1, 0 ); // $ExpectError
mapReduceRight( arr1, 0, mapper, ); // $ExpectError
mapReduceRight( arr1, 0, mapper ); // $ExpectError
mapReduceRight( arr1, 0, mapper, reducer, {}, 3 ); // $ExpectError

const arr2 = array( [ 1, 2, 3 ] );
Expand Down
2 changes: 1 addition & 1 deletion map-reduce/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ function reducer( acc: number, value: number ): number {
mapReduce(); // $ExpectError
mapReduce( arr1 ); // $ExpectError
mapReduce( arr1, 0 ); // $ExpectError
mapReduce( arr1, 0, mapper, ); // $ExpectError
mapReduce( arr1, 0, mapper ); // $ExpectError
mapReduce( arr1, 0, mapper, reducer, {}, 3 ); // $ExpectError

const arr2 = array( [ 1, 2, 3 ] );
Expand Down

0 comments on commit 9d7924e

Please sign in to comment.