Skip to content

Commit 4d283e6

Browse files
committed
Auto-generated commit
1 parent b797c65 commit 4d283e6

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

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-09-14)
7+
## Unreleased (2025-09-15)
88

99
<section class="features">
1010

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

252252
<details>
253253

254+
- [`0042479`](https://github.com/stdlib-js/stdlib/commit/0042479157f9756dfbb87f6e9eeae51f5084d5fa) - **style:** remove extra spaces in return annotation comments _(by Philipp Burckhardt)_
254255
- [`addcce3`](https://github.com/stdlib-js/stdlib/commit/addcce3ebb1f88d8c258f34a03c61b6eb14e5c87) - **feat:** add `toInsertedAt` to namespace _(by Athan Reines)_
255256
- [`b0b7cf6`](https://github.com/stdlib-js/stdlib/commit/b0b7cf605445a13f21685c78d55a477cf86e2655) - **feat:** add `insertAt` to namespace _(by Athan Reines)_
256257
- [`8d0488a`](https://github.com/stdlib-js/stdlib/commit/8d0488a14aeae75e8d9bba5b37157eff56cc61ec) - **feat:** add `array/base/insert-at` _(by Athan Reines)_

base/to-inserted-at/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var assign = require( './assign.js' );
4848
* // returns [ 1, 6, 2, 3, 4 ]
4949
*
5050
* v = toInsertedAt( x, -2, 7 );
51-
* // returns [ 1, 2, 3, 7, 4 ]
51+
* // returns [ 1, 2, 3, 7, 4 ]
5252
*/
5353
function toInsertedAt( x, index, value ) {
5454
var out;

base/with/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function hasMethod( obj, method ) {
7070
* // returns [ 1, 6, 3, 4 ]
7171
*
7272
* v = arrayWith( x, -2, 7 );
73-
* // returns [ 1, 2, 7, 4 ]
73+
* // returns [ 1, 2, 7, 4 ]
7474
*/
7575
function arrayWith( x, index, value ) {
7676
var out;

base/without/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var assign = require( './assign.js' );
4747
* // returns [ 1, 3, 4 ]
4848
*
4949
* v = without( x, -2 );
50-
* // returns [ 1, 2, 4 ]
50+
* // returns [ 1, 2, 4 ]
5151
*/
5252
function without( x, index ) {
5353
var out;

0 commit comments

Comments
 (0)