Skip to content

Commit efd3c5f

Browse files
committed
Auto-generated commit
1 parent 2b3d896 commit efd3c5f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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 (2024-09-28)
7+
## Unreleased (2024-09-29)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`2c4e5d8`](https://github.com/stdlib-js/stdlib/commit/2c4e5d824e0c5dc8fd536bf79ff565cee100ce46) - **build:** disable additional lint rule in TS tests _(by Philipp Burckhardt)_
1516
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
1617
- [`0406147`](https://github.com/stdlib-js/stdlib/commit/04061476d1036e1b8b786736b1ba1653eddff1ef) - **refactor:** update paths _(by Athan Reines)_
1718
- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_

docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ function reducer( acc: number, value: number ): number {
171171
mapReduce(); // $ExpectError
172172
mapReduce( arr1 ); // $ExpectError
173173
mapReduce( arr1, 0 ); // $ExpectError
174-
mapReduce( arr1, 0, mapper, ); // $ExpectError
174+
mapReduce( arr1, 0, mapper ); // $ExpectError
175175
mapReduce( arr1, 0, mapper, reducer, {}, 3 ); // $ExpectError
176176

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

0 commit comments

Comments
 (0)