Skip to content

Commit ab9fefb

Browse files
committed
Auto-generated commit
1 parent 26fa747 commit ab9fefb

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
<details>
1414

15+
- [`322eefc`](https://github.com/stdlib-js/stdlib/commit/322eefcff2e0d83f4e302c02bd57cee2a442b8f0) - **docs:** fix interface name in `array/base/one-to` TypeScript declarations _(by Philipp Burckhardt)_
1516
- [`d22a58e`](https://github.com/stdlib-js/stdlib/commit/d22a58eaa5cea695ecb9809f85edea36d1199c74) - **refactor:** simplify declarations _(by Athan Reines)_
1617
- [`eb00b1b`](https://github.com/stdlib-js/stdlib/commit/eb00b1b80848018e05fbc2a20d5985e747557977) - **docs:** fix example _(by Athan Reines)_
1718
- [`cf7d38a`](https://github.com/stdlib-js/stdlib/commit/cf7d38ae3e7bce92cf47778f7b1c3da731121d77) - **docs:** update related packages sections [(#3527)](https://github.com/stdlib-js/stdlib/pull/3527) _(by stdlib-bot)_
@@ -26,9 +27,10 @@
2627

2728
### Contributors
2829

29-
A total of 1 person contributed to this release. Thank you to this contributor:
30+
A total of 2 people contributed to this release. Thank you to the following contributors:
3031

3132
- Athan Reines
33+
- Philipp Burckhardt
3234

3335
</section>
3436

docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ type InputArray<T> = Collection<T> | AccessorArrayLike<T>;
3030
/**
3131
* Interface describing `oneTo`.
3232
*/
33-
interface ZeroTo {
33+
interface OneTo {
3434
/**
3535
* Generates a linearly spaced numeric array whose elements increment by 1 starting from one.
3636
*
@@ -84,7 +84,7 @@ interface ZeroTo {
8484
* var arr = oneTo.assign( out, -1, out.length-1 );
8585
* // returns [ 6, 5, 4, 3, 2, 1 ]
8686
*/
87-
declare var oneTo: ZeroTo;
87+
declare var oneTo: OneTo;
8888

8989

9090
// EXPORTS //

0 commit comments

Comments
 (0)