Skip to content

Commit 6a47f13

Browse files
committed
Auto-generated commit
1 parent c05c124 commit 6a47f13

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 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-11)
7+
## Unreleased (2025-09-14)
88

99
<section class="features">
1010

@@ -247,6 +247,8 @@ A total of 33 issues were closed in this release:
247247

248248
<details>
249249

250+
- [`627ead4`](https://github.com/stdlib-js/stdlib/commit/627ead48e08fcf20d5cb72c14014bb9df478adf9) - **docs:** fix example _(by Athan Reines)_
251+
- [`ef39db1`](https://github.com/stdlib-js/stdlib/commit/ef39db15d5ced85b67f9652862ce8c51321b6bcc) - **docs:** fix example _(by Athan Reines)_
250252
- [`7808da1`](https://github.com/stdlib-js/stdlib/commit/7808da1fbe8e2100ba60704afee2636fa9d5f091) - **docs:** add missing quote and replace incorrect closing curly braces _(by Philipp Burckhardt)_
251253
- [`3b9d924`](https://github.com/stdlib-js/stdlib/commit/3b9d92469dabccb5e006dc55086752b5cdfbc7ed) - **docs:** add missing quotes _(by Philipp Burckhardt)_
252254
- [`8b0b780`](https://github.com/stdlib-js/stdlib/commit/8b0b78084a2ff5d7a76ba3c5945b13d7f0906f4f) - **docs:** fix TypeScript declaration linting errors _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ Saurabh Singh <saurabhsraghuvanshi@gmail.com>
181181
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
182182
Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
183183
Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
184+
Shaswata Panda <106397517+shaswata-26@users.noreply.github.com>
184185
Shivam Ahir <11shivam00@gmail.com>
185186
Shivansh <114570926+shiv343@users.noreply.github.com>
186187
Shraddheya Shendre <shendreshraddheya@gmail.com>
@@ -201,6 +202,7 @@ Tirtadwipa Manunggal <tirtadwipa.manunggal@gmail.com>
201202
Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
202203
Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com>
203204
Tushar Bhardwaj <155543597+TusharBhardwaj441@users.noreply.github.com>
205+
Tyson Cung <45380903+tysoncung@users.noreply.github.com>
204206
Uday Kakade <141299403+udaykakade25@users.noreply.github.com>
205207
Ujjwal Kirti <64329707+ujjwalkirti@users.noreply.github.com>
206208
Utkarsh <http://utkarsh11105@gmail.com>

base/with/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ interface ArrayWith {
179179
* var out = toAccessorArray( [ 0, 0, 0, 0 ] );
180180
* var arr = arrayWith.assign( x, 0, 5, out, 1, 0 );
181181
*
182-
* var v = out[ 0 ];
182+
* var v = out.get( 0 );
183183
* // returns 5
184184
*
185185
* var bool = ( arr === out );

base/without/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ interface ArrayWith {
148148
* var out = toAccessorArray( [ 0, 0, 0 ] );
149149
* var arr = without.assign( x, 0, out, 1, 0 );
150150
*
151-
* var v = out[ 0 ];
151+
* var v = out.get( 0 );
152152
* // returns 2
153153
*
154154
* var bool = ( arr === out );

0 commit comments

Comments
 (0)