Skip to content

Commit d9eca8d

Browse files
committed
Auto-generated commit
1 parent 951666a commit d9eca8d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
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-09-09)
7+
## Unreleased (2025-09-10)
88

99
<section class="features">
1010

@@ -3390,6 +3390,7 @@ A total of 546 issues were closed in this release:
33903390

33913391
<details>
33923392

3393+
- [`82be305`](https://github.com/stdlib-js/stdlib/commit/82be305dfecc75ac71e18dbed841aa6f8022e7be) - **docs:** clean-up TSDoc examples _(by Philipp Burckhardt)_
33933394
- [`93de48b`](https://github.com/stdlib-js/stdlib/commit/93de48be828ed50d6116f13eb9f4812e2c0bcf6a) - **docs:** replace manual `for` loop in examples [(#8048)](https://github.com/stdlib-js/stdlib/pull/8048) _(by Harsh)_
33943395
- [`d3c3d08`](https://github.com/stdlib-js/stdlib/commit/d3c3d083f564d82302b8351359955034f34789e3) - **docs:** replace manual `for` loop in examples [(#8047)](https://github.com/stdlib-js/stdlib/pull/8047) _(by Harsh)_
33953396
- [`b146b54`](https://github.com/stdlib-js/stdlib/commit/b146b54af84f9455952f82f7928f8f7bad6df121) - **feat:** add exports to `stats/base/ndarray` namespace _(by Philipp Burckhardt)_

array/mskmax/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ type InputArray = NumericArray | Collection<number> | AccessorArrayLike<number>;
4141
* var v = mskmax( x, mask );
4242
* // returns 2.0
4343
*/
44-
declare function max( x: InputArray, mask: InputArray ): number;
44+
declare function mskmax( x: InputArray, mask: InputArray ): number;
4545

4646

4747
// EXPORTS //
4848

49-
export = max;
49+
export = mskmax;

0 commit comments

Comments
 (0)