Skip to content

Commit 333878a

Browse files
committed
Auto-generated commit
1 parent 9b9d336 commit 333878a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ A total of 33 issues were closed in this release:
256256

257257
<details>
258258

259+
- [`322eefc`](https://github.com/stdlib-js/stdlib/commit/322eefcff2e0d83f4e302c02bd57cee2a442b8f0) - **docs:** fix interface name in `array/base/one-to` TypeScript declarations _(by Philipp Burckhardt)_
259260
- [`f223373`](https://github.com/stdlib-js/stdlib/commit/f223373e1c5b86f2ba763cb92472b03096485604) - **chore:** simplify declarations _(by Athan Reines)_
260261
- [`d22a58e`](https://github.com/stdlib-js/stdlib/commit/d22a58eaa5cea695ecb9809f85edea36d1199c74) - **refactor:** simplify declarations _(by Athan Reines)_
261262
- [`b66cf8e`](https://github.com/stdlib-js/stdlib/commit/b66cf8efdf5b793040fce1236fa3adcdcd5067a7) - **docs:** update examples _(by Athan Reines)_

base/one-to/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)