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 28, 2024
1 parent b1df116 commit f31da84
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

<details>

- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
- [`975147f`](https://github.com/stdlib-js/stdlib/commit/975147f3125c786ec1672acb3d2564ca16eaa790) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_
- [`20dea8a`](https://github.com/stdlib-js/stdlib/commit/20dea8af2b14181aa75354f7e3aeb65b955904b9) - **docs:** remove extraneous newline _(by Athan Reines)_

Expand Down
10 changes: 4 additions & 6 deletions docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ import accessors = require( './index' );
/**
* Returns an array-like object supporting the get/set protocol.
*
* @return array-like object
* @returns array-like object
*/
function accessorArray(): AccessorArrayLike<number> {
let arr: AccessorArrayLike<number>;
arr = {
const arr: AccessorArrayLike<number> = {
'0': 1,
'1': 2,
'2': 3,
Expand All @@ -49,11 +48,10 @@ function accessorArray(): AccessorArrayLike<number> {
/**
* Returns an array-like object.
*
* @return array-like object
* @returns array-like object
*/
function arrayLike(): ArrayLike<number> {
let arr: ArrayLike<number>;
arr = {
const arr: ArrayLike<number> = {
'0': 1,
'1': 2,
'2': 3,
Expand Down

0 comments on commit f31da84

Please sign in to comment.