Skip to content

Commit 84f44ac

Browse files
committed
Auto-generated commit
1 parent 9a4b27a commit 84f44ac

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,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-09-28)
7+
## Unreleased (2024-09-29)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`2c4e5d8`](https://github.com/stdlib-js/stdlib/commit/2c4e5d824e0c5dc8fd536bf79ff565cee100ce46) - **build:** disable additional lint rule in TS tests _(by Philipp Burckhardt)_
2526
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
2627
- [`ff9fa81`](https://github.com/stdlib-js/stdlib/commit/ff9fa81f917d539f1a11fba5580e1744991a8a11) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_
2728
- [`bc12e55`](https://github.com/stdlib-js/stdlib/commit/bc12e55ff4733e9816a2d50e3106ae75de0075f2) - **docs:** fix copy and extraneous newline _(by Athan Reines)_

docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ function arrayLike(): ArrayLike<number> {
169169
const x = [ 1, 2, 3, 4, 5, 6 ];
170170

171171
strided2object(); // $ExpectError
172-
strided2object( x.length, ); // $ExpectError
172+
strided2object( x.length ); // $ExpectError
173173
strided2object( x.length, x ); // $ExpectError
174174
strided2object( x.length, x, 1 ); // $ExpectError
175175
strided2object( x.length, x, 1, 0, {} ); // $ExpectError

0 commit comments

Comments
 (0)