Skip to content

Commit f13002a

Browse files
committed
Auto-generated commit
1 parent 50d63ee commit f13002a

File tree

15 files changed

+27
-30
lines changed

15 files changed

+27
-30
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-06-24)
7+
## Unreleased (2025-06-25)
88

99
<section class="features">
1010

@@ -216,6 +216,7 @@ A total of 32 issues were closed in this release:
216216

217217
<details>
218218

219+
- [`bc3632a`](https://github.com/stdlib-js/stdlib/commit/bc3632a5a7b48a8973b1418e861ddc45b3e8d0fa) - **chore:** minor clean-up _(by Philipp Burckhardt)_
219220
- [`b128b6a`](https://github.com/stdlib-js/stdlib/commit/b128b6a25775d9b319c83a9dbb521d8d9c45b8c2) - **chore:** fix ExpectType by supplying correct number of generic parameters _(by Philipp Burckhardt)_
220221
- [`4ec1d6d`](https://github.com/stdlib-js/stdlib/commit/4ec1d6d67d746b2231ae18bfaaeb2ee5a9f40697) - **docs:** minor clean-up _(by Philipp Burckhardt)_
221222
- [`d3426a4`](https://github.com/stdlib-js/stdlib/commit/d3426a41ee92d8024bf7fc03d200aa98fb62a6f0) - **fix:** use correct dimensions for array _(by Philipp Burckhardt)_

base/fill-by/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ declare function fillBy<T = unknown, V = unknown, ThisArg = unknown>( x: Accesso
225225
*
226226
* var x = [ 1, 2, 3 ];
227227
*
228-
* var out = fillBy( x, 4, 0, 3 );
228+
* var out = fillBy( x, 0, 3, fcn );
229229
* // returns [ 4, 4, 4 ]
230230
*
231231
* @example
@@ -235,7 +235,7 @@ declare function fillBy<T = unknown, V = unknown, ThisArg = unknown>( x: Accesso
235235
*
236236
* var x = [ 1, 2, 3, 4, 5, 6 ];
237237
*
238-
* var out = fillBy( x, 8, 0, 3 );
238+
* var out = fillBy( x, 0, 3, fcn );
239239
* // returns [ 8, 8, 8, 4, 5, 6 ]
240240
*/
241241
declare function fillBy<T = unknown, V = unknown, ThisArg = unknown>( x: Collection<T>, start: number, end: number, fcn: Callback<T, Collection<T>, V, ThisArg>, thisArg?: ThisParameterType<Callback<T, Collection<T>, V, ThisArg>> ): Collection<T | V>;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ interface Routine {
139139
*
140140
* - **value**: array element.
141141
* - **indices**: current array element indices.
142-
* -- **array**: input nested array.
142+
* - **array**: input nested array.
143143
*
144144
* @param x - input nested array
145145
* @param shape - array shape

base/mskbinary2d/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*
3030
* @param {ArrayLikeObject<Array<Collection>>} arrays - array-like object containing two input nested arrays, an input nested mask array, and one output nested array
3131
* @param {NonNegativeIntegerArray} shape - array shape
32-
* @param {Callback} fcn - unary callback
32+
* @param {Callback} fcn - binary callback
3333
* @returns {void}
3434
*
3535
* @example

base/mskbinary4d/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*
3030
* @param {ArrayLikeObject<Array<Collection>>} arrays - array-like object containing two input nested arrays, an input nested mask array, and one output nested array
3131
* @param {NonNegativeIntegerArray} shape - array shape
32-
* @param {Callback} fcn - unary callback
32+
* @param {Callback} fcn - binary callback
3333
* @returns {void}
3434
*
3535
* @example

base/mskbinary5d/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*
3232
* @param {ArrayLikeObject<Array<Collection>>} arrays - array-like object containing two input nested arrays, an input nested mask array, and one output nested array
3333
* @param {NonNegativeIntegerArray} shape - array shape
34-
* @param {Callback} fcn - unary callback
34+
* @param {Callback} fcn - binary callback
3535
* @returns {void}
3636
*
3737
* @example

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ declare function put<T extends TypedArray | BooleanTypedArray, U = unknown>( x:
8585
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
8686
*
8787
* var indices = [ 1, 2 ];
88-
* var values = new Complex128Array( [ 20.0, 30.0, 40, 5.0 ] );
88+
* var values = new Complex128Array( [ 20.0, 30.0, 40.0, 5.0 ] );
8989
*
9090
* var out = put( x, indices, values, 'throw' );
9191
* // returns <Complex128Array>

base/unary3d-by/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ type Unary<U, V> = ( value: U ) => V;
104104
* var x = ones3d( shape );
105105
* var y = zeros3d( shape );
106106
*
107-
* unary3dBy( [ x, y ], shape, scale );
107+
* unary3dBy( [ x, y ], shape, scale, accessor );
108108
*
109109
* console.log( y );
110110
* // => [ [ [ -10.0, -10.0 ], [ -10.0, -10.0 ] ] ]

nans-like/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ declare function nansLike( x: Complex64Array, dtype?: DataType ): Complex64Array
259259
* // returns [ 0, 0 ]
260260
*
261261
* var y = nansLike( x );
262-
* // returns [ 1, 1 ]
262+
* // returns [ NaN, NaN ]
263263
*/
264264
declare function nansLike( x: Array<any>, dtype?: DataType ): Array<number>;
265265

shared-buffer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ try {
110110
}
111111
```
112112

113-
By default, the method copies from the beginning of the [`SharedArrayBuffer`][mdn-sharedarraybuffer]. To beginning copying from a different byte index, provide a `start` argument, specifying the starting byte index (inclusive).
113+
By default, the method copies from the beginning of the [`SharedArrayBuffer`][mdn-sharedarraybuffer]. To begin copying from a different byte index, provide a `start` argument, specifying the starting byte index (inclusive).
114114

115115
<!-- eslint-disable stdlib/require-globals, no-unused-vars, no-inner-declarations -->
116116

0 commit comments

Comments
 (0)