Skip to content

Commit e48f6e1

Browse files
committed
Auto-generated commit
1 parent 5c541e5 commit e48f6e1

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
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-08-21)
7+
## Unreleased (2025-09-06)
88

99
<section class="features">
1010

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

248248
<details>
249249

250+
- [`8b0b780`](https://github.com/stdlib-js/stdlib/commit/8b0b78084a2ff5d7a76ba3c5945b13d7f0906f4f) - **docs:** fix TypeScript declaration linting errors _(by Philipp Burckhardt)_
250251
- [`a36e532`](https://github.com/stdlib-js/stdlib/commit/a36e5328871d2e351a19a00e75eb0d386702e870) - **chore:** address commit comments for commit `5acfd64` [(#7919)](https://github.com/stdlib-js/stdlib/pull/7919) _(by Nakul Krishnakumar)_
251252
- [`5acfd64`](https://github.com/stdlib-js/stdlib/commit/5acfd64326637640433a7e3ffc5d101db23ab1d8) - **docs:** fix example code _(by Philipp Burckhardt)_
252253
- [`4f3789b`](https://github.com/stdlib-js/stdlib/commit/4f3789b25e01908dab6c31b910573b73e5709ac5) - **docs:** fix example code _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <[email protected]>
4242
Bryan Elee <[email protected]>
4343
Chinmay Joshi <[email protected]>
4444
Christopher Dambamuromo <[email protected]>
45+
DUDHAT HEMIL PRAVINKUMAR <[email protected]>
4546
4647
Daniel Hernandez Gomez <[email protected]>
4748
Daniel Killenberger <[email protected]>
@@ -189,6 +190,7 @@ Sivam Das <[email protected]>
189190
Snehil Shah <[email protected]>
190191
Soumajit Chatterjee <[email protected]>
191192
Spandan Barve <[email protected]>
193+
Srinivas Batthula <[email protected]>
192194
Stephannie Jiménez Gacha <[email protected]>
193195
Suhaib Ilahi <[email protected]>
194196
Suraj Kumar <[email protected]>

mskput/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ interface Options {
6868
* var x = new Int32Array( [ 1, 2, 3, 4 ] );
6969
*
7070
* var mask = [ 1, 0, 0, 1 ];
71-
* var values = [ 20, 30 ];
71+
* var values = new Int32Array( [ 20, 30 ] );
7272
*
7373
* var out = mskput( x, mask, values );
7474
* // returns <Int32Array>[ 1, 20, 30, 4 ]
@@ -81,7 +81,7 @@ interface Options {
8181
*
8282
* var x = new Int32Array( [ 1, 2, 3, 4 ] );
8383
*
84-
* var out = mskput( x, [ 1, 0, 0, 1 ], [ 30 ] );
84+
* var out = mskput( x, [ 1, 0, 0, 1 ], new Int32Array( [ 30 ] ) );
8585
* // returns <Int32Array>[ 1, 30, 30, 4 ]
8686
*
8787
* var bool = ( out === x );

place/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ interface Options {
6868
* var x = new Int32Array( [ 1, 2, 3, 4 ] );
6969
*
7070
* var mask = [ 0, 1, 1, 0 ];
71-
* var values = [ 20, 30 ];
71+
* var values = new Int32Array( [ 20, 30 ] );
7272
*
7373
* var out = place( x, mask, values );
7474
* // returns <Int32Array>[ 1, 20, 30, 4 ]
@@ -81,7 +81,7 @@ interface Options {
8181
*
8282
* var x = new Int32Array( [ 1, 2, 3, 4 ] );
8383
*
84-
* var out = place( x, [ 0, 1, 1, 0 ], [ 30 ] );
84+
* var out = place( x, [ 0, 1, 1, 0 ], new Int32Array( [ 30 ] ) );
8585
* // returns <Int32Array>[ 1, 30, 30, 4 ]
8686
*
8787
* var bool = ( out === x );

put/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ interface Options {
5959
* var x = new Int32Array( [ 1, 2, 3, 4 ] );
6060
*
6161
* var indices = [ 1, 2 ];
62-
* var values = [ 20, 30 ];
62+
* var values = new Int32Array( [ 20, 30 ] );
6363
*
6464
* var out = put( x, indices, values );
6565
* // returns <Int32Array>[ 1, 20, 30, 4 ]
@@ -72,7 +72,7 @@ interface Options {
7272
*
7373
* var x = new Int32Array( [ 1, 2, 3, 4 ] );
7474
*
75-
* var out = put( x, [ 1, 2 ], [ 30 ] );
75+
* var out = put( x, [ 1, 2 ], new Int32Array( [ 30 ] ) );
7676
* // returns <Int32Array>[ 1, 30, 30, 4 ]
7777
*
7878
* var bool = ( out === x );

0 commit comments

Comments
 (0)