Skip to content

Commit 0941fdb

Browse files
committed
Auto-generated commit
1 parent 13e34cf commit 0941fdb

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-05-31)
7+
## Unreleased (2026-06-05)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`8e32423`](https://github.com/stdlib-js/stdlib/commit/8e32423156316049de0700cfcb4d3da2b173f008) - **refactor:** align TypeScript declarations across stats packages [(#12512)](https://github.com/stdlib-js/stdlib/pull/12512) _(by Philipp Burckhardt)_
1516
- [`a07ad1c`](https://github.com/stdlib-js/stdlib/commit/a07ad1c13b9d2428b8897f47c6c78c6bfb0a235d) - **bench:** refactor to use string interpolation in `stats/incr` [(#11394)](https://github.com/stdlib-js/stdlib/pull/11394) _(by Karan Anand)_
1617

1718
</details>
@@ -24,9 +25,10 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 2 people contributed to this release. Thank you to the following contributors:
2829

2930
- Karan Anand
31+
- Philipp Burckhardt
3032

3133
</section>
3234

docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ type accumulator = ( x?: number ) => number | null;
3535
/**
3636
* Returns an accumulator function which incrementally computes a corrected sample standard deviation.
3737
*
38-
* @param mu - known mean
38+
* @param mean - known mean
3939
* @returns accumulator function
4040
*
4141
* @example
@@ -53,7 +53,7 @@ type accumulator = ( x?: number ) => number | null;
5353
* s = accumulator();
5454
* // returns ~4.95
5555
*/
56-
declare function incrstdev( mu?: number ): accumulator;
56+
declare function incrstdev( mean?: number ): accumulator;
5757

5858

5959
// EXPORTS //

0 commit comments

Comments
 (0)