Skip to content

Commit 7e132dc

Browse files
committed
Auto-generated commit
1 parent b9df707 commit 7e132dc

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
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="packages">
1010

@@ -321,6 +321,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
321321

322322
<details>
323323

324+
- [`2c4e5d8`](https://github.com/stdlib-js/stdlib/commit/2c4e5d824e0c5dc8fd536bf79ff565cee100ce46) - **build:** disable additional lint rule in TS tests _(by Philipp Burckhardt)_
324325
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
325326
- [`7f368f6`](https://github.com/stdlib-js/stdlib/commit/7f368f6c3f4cea444a304a62616cea36a5f143eb) - **fix:** remove unused imports from TS declaration file _(by Philipp Burckhardt)_
326327
- [`975147f`](https://github.com/stdlib-js/stdlib/commit/975147f3125c786ec1672acb3d2564ca16eaa790) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_

base/expand-dimensions/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ import expandDimensions = require( './index' );
5959
const x = array( [ [ 1, 2 ], [ 3, 4 ] ] );
6060

6161
expandDimensions(); // $ExpectError
62-
expandDimensions( x, ); // $ExpectError
62+
expandDimensions( x ); // $ExpectError
6363
expandDimensions( x, 1, [ 1, 2, 3 ], [ 2, 3 ] ); // $ExpectError
6464
}

base/prepend-singleton-dimensions/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ import prependSingletonDimensions = require( './index' );
5959
const x = array( [ [ 1, 2 ], [ 3, 4 ] ] );
6060

6161
prependSingletonDimensions(); // $ExpectError
62-
prependSingletonDimensions( x, ); // $ExpectError
62+
prependSingletonDimensions( x ); // $ExpectError
6363
prependSingletonDimensions( x, 3, [ 1, 2, 3 ], [ 2, 3 ] ); // $ExpectError
6464
}

0 commit comments

Comments
 (0)