Skip to content

Commit 52fb60e

Browse files
committed
Auto-generated commit
1 parent 958f953 commit 52fb60e

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 (2025-12-20)
7+
## Unreleased (2025-12-27)
88

99
<section class="features">
1010

@@ -260,6 +260,7 @@ A total of 33 issues were closed in this release:
260260

261261
<details>
262262

263+
- [`6ce0275`](https://github.com/stdlib-js/stdlib/commit/6ce0275d3eec598ce3ecb8da74a1c82f0de3a482) - **docs:** remove incorrect hyphens from JSDoc `returns` annotations _(by Philipp Burckhardt)_
263264
- [`b45d635`](https://github.com/stdlib-js/stdlib/commit/b45d6355de87bcd65764a9c07f5551e2423e83cb) - **bench:** refactor to use string interpolation in `array/base/filled5d-by` [(#9283)](https://github.com/stdlib-js/stdlib/pull/9283) _(by Rohit R Bhat)_
264265
- [`5bfa5e8`](https://github.com/stdlib-js/stdlib/commit/5bfa5e8ac36fe7abb9c8799560fb90c787999360) - **bench:** refactor to use string interpolation in `array/base/zeros4d` [(#9277)](https://github.com/stdlib-js/stdlib/pull/9277) _(by anee3)_
265266
- [`1c08d9e`](https://github.com/stdlib-js/stdlib/commit/1c08d9e6efa0af32176a2fcfbbbd4a10002cd66c) - **bench:** refactor to use string interpolation in `array/base/zeros5d` [(#9266)](https://github.com/stdlib-js/stdlib/pull/9266) _(by anee3, Athan Reines)_

base/first/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var resolveGetter = require( './../../../base/resolve-getter' );
2929
* Returns the first element of an array-like object.
3030
*
3131
* @param {Collection} arr - input array
32-
* @returns {*} - first element
32+
* @returns {*} first element
3333
*
3434
* @example
3535
* var out = first( [ 1, 2, 3 ] );

base/last/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var resolveGetter = require( './../../../base/resolve-getter' );
2929
* Returns the last element of an array-like object.
3030
*
3131
* @param {Collection} arr - input array
32-
* @returns {*} - last element
32+
* @returns {*} last element
3333
*
3434
* @example
3535
* var out = last( [ 1, 2, 3 ] );

0 commit comments

Comments
 (0)