Skip to content

Commit fdd75ca

Browse files
committed
Auto-generated commit
1 parent 61c5411 commit fdd75ca

File tree

34 files changed

+35
-34
lines changed

34 files changed

+35
-34
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-28)
7+
## Unreleased (2025-12-29)
88

99
<section class="features">
1010

@@ -3540,6 +3540,7 @@ A total of 560 issues were closed in this release:
35403540

35413541
<details>
35423542

3543+
- [`ff435c0`](https://github.com/stdlib-js/stdlib/commit/ff435c01d291e9ef75429a026fb221b729aa4a07) - **docs:** update dtype type _(by Athan Reines)_
35433544
- [`20d29ed`](https://github.com/stdlib-js/stdlib/commit/20d29ed3410f2ff8ff6bfadbfb0a1f5a4b7e5fde) - **fix:** use `int8ndarray` type for alternative hypothesis param in `ndarray/sztest` and `ndarray/dztest` _(by Philipp Burckhardt)_
35443545
- [`880be90`](https://github.com/stdlib-js/stdlib/commit/880be90c78565355d6e6616def13ccf5037faeca) - **style:** add missing spaces before closing bracket _(by Philipp Burckhardt)_
35453546
- [`f40f3ed`](https://github.com/stdlib-js/stdlib/commit/f40f3ed3614de207225686772c7858c64510d1fb) - **docs:** fix parameter description _(by Philipp Burckhardt)_

cumax/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var table = {
6060
* @param {ndarray} x - input ndarray
6161
* @param {Options} [options] - function options
6262
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform a reduction
63-
* @param {string} [options.dtype] - output ndarray data type
63+
* @param {*} [options.dtype] - output ndarray data type
6464
* @throws {TypeError} first argument must be an ndarray-like object
6565
* @throws {TypeError} options argument must be an object
6666
* @throws {RangeError} dimension indices must not exceed input ndarray bounds

cumin/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var table = {
6060
* @param {ndarray} x - input ndarray
6161
* @param {Options} [options] - function options
6262
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform a reduction
63-
* @param {string} [options.dtype] - output ndarray data type
63+
* @param {*} [options.dtype] - output ndarray data type
6464
* @throws {TypeError} first argument must be an ndarray-like object
6565
* @throws {TypeError} options argument must be an object
6666
* @throws {RangeError} dimension indices must not exceed input ndarray bounds

max-by/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var table = {
4949
* @param {Options} [options] - function options
5050
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform a reduction
5151
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
52-
* @param {string} [options.dtype] - output ndarray data type
52+
* @param {*} [options.dtype] - output ndarray data type
5353
* @param {Function} clbk - callback function
5454
* @param {*} [thisArg] - callback function execution context
5555
* @throws {TypeError} first argument must be an ndarray-like object

max/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var table = {
5959
* @param {Options} [options] - function options
6060
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform a reduction
6161
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
62-
* @param {string} [options.dtype] - output ndarray data type
62+
* @param {*} [options.dtype] - output ndarray data type
6363
* @throws {TypeError} first argument must be an ndarray-like object
6464
* @throws {TypeError} options argument must be an object
6565
* @throws {RangeError} dimension indices must not exceed input ndarray bounds

maxabs/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var table = {
5959
* @param {Options} [options] - function options
6060
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform a reduction
6161
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
62-
* @param {string} [options.dtype] - output ndarray data type
62+
* @param {*} [options.dtype] - output ndarray data type
6363
* @throws {TypeError} first argument must be an ndarray-like object
6464
* @throws {TypeError} options argument must be an object
6565
* @throws {RangeError} dimension indices must not exceed input ndarray bounds

maxsorted/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var table = {
5959
* @param {Options} [options] - function options
6060
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform a reduction
6161
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
62-
* @param {string} [options.dtype] - output ndarray data type
62+
* @param {*} [options.dtype] - output ndarray data type
6363
* @throws {TypeError} first argument must be an ndarray-like object
6464
* @throws {TypeError} options argument must be an object
6565
* @throws {RangeError} dimension indices must not exceed input ndarray bounds

mean/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var table = {
5959
* @param {Options} [options] - function options
6060
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform a reduction
6161
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
62-
* @param {string} [options.dtype] - output ndarray data type
62+
* @param {*} [options.dtype] - output ndarray data type
6363
* @throws {TypeError} first argument must be an ndarray-like object
6464
* @throws {TypeError} options argument must be an object
6565
* @throws {RangeError} dimension indices must not exceed input ndarray bounds

meankbn/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var table = {
5959
* @param {Options} [options] - function options
6060
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform a reduction
6161
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
62-
* @param {string} [options.dtype] - output ndarray data type
62+
* @param {*} [options.dtype] - output ndarray data type
6363
* @throws {TypeError} first argument must be an ndarray-like object
6464
* @throws {TypeError} options argument must be an object
6565
* @throws {RangeError} dimension indices must not exceed input ndarray bounds

meankbn2/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var table = {
5959
* @param {Options} [options] - function options
6060
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform a reduction
6161
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
62-
* @param {string} [options.dtype] - output ndarray data type
62+
* @param {*} [options.dtype] - output ndarray data type
6363
* @throws {TypeError} first argument must be an ndarray-like object
6464
* @throws {TypeError} options argument must be an object
6565
* @throws {RangeError} dimension indices must not exceed input ndarray bounds

0 commit comments

Comments
 (0)