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 b9df707 commit 7e132dc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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 @@ -321,6 +321,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)_
- [`7f368f6`](https://github.com/stdlib-js/stdlib/commit/7f368f6c3f4cea444a304a62616cea36a5f143eb) - **fix:** remove unused imports from TS declaration file _(by Philipp Burckhardt)_
- [`975147f`](https://github.com/stdlib-js/stdlib/commit/975147f3125c786ec1672acb3d2564ca16eaa790) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_
Expand Down
2 changes: 1 addition & 1 deletion base/expand-dimensions/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ import expandDimensions = require( './index' );
const x = array( [ [ 1, 2 ], [ 3, 4 ] ] );

expandDimensions(); // $ExpectError
expandDimensions( x, ); // $ExpectError
expandDimensions( x ); // $ExpectError
expandDimensions( x, 1, [ 1, 2, 3 ], [ 2, 3 ] ); // $ExpectError
}
2 changes: 1 addition & 1 deletion base/prepend-singleton-dimensions/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ import prependSingletonDimensions = require( './index' );
const x = array( [ [ 1, 2 ], [ 3, 4 ] ] );

prependSingletonDimensions(); // $ExpectError
prependSingletonDimensions( x, ); // $ExpectError
prependSingletonDimensions( x ); // $ExpectError
prependSingletonDimensions( x, 3, [ 1, 2, 3 ], [ 2, 3 ] ); // $ExpectError
}

0 comments on commit 7e132dc

Please sign in to comment.