Skip to content

Commit 393fb25

Browse files
committed
Auto-generated commit
1 parent bff4c92 commit 393fb25

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-09-24)
7+
## Unreleased (2024-09-28)
88

99
<section class="packages">
1010

@@ -34,6 +34,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
3434

3535
<details>
3636

37+
- [`b89c97c`](https://github.com/stdlib-js/stdlib/commit/b89c97ce0b812ff0b2aab16b4d77969d44fe3e8c) - **docs:** resolve lint errors in TS declaration files _(by Philipp Burckhardt)_
3738
- [`7fb04a9`](https://github.com/stdlib-js/stdlib/commit/7fb04a92ebae797788f7047feac1caaf6a7a1f4f) - **style:** add missing spaces around parentheses _(by Philipp Burckhardt)_
3839
- [`d7bf560`](https://github.com/stdlib-js/stdlib/commit/d7bf560813d0f6cd44418dad0e8e84dd3f0a1596) - **docs:** improve examples of `stats/base/dists/gumbel` _(by olenkabilonizhka, Philipp Burckhardt)_
3940
- [`9e689ff`](https://github.com/stdlib-js/stdlib/commit/9e689ffcb7c6223afc521f1e574b42f10921cf5e) - **chore:** fix indentation in manifest.json files _(by Philipp Burckhardt)_

CONTRIBUTORS

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Christopher Dambamuromo <[email protected]>
2121
2222
Daniel Killenberger <[email protected]>
2323
Daniel Yu <[email protected]>
24+
Debashis Maharana <[email protected]>
2425
Dominik Moritz <[email protected]>
2526
Dorrin Sotoudeh <[email protected]>
2627
EuniceSim142 <[email protected]>
@@ -99,6 +100,7 @@ Xiaochuan Ye <[email protected]>
99100
Yernar Yergaziyev <[email protected]>
100101
101102
nishant-s7 <[email protected]>
103+
olenkabilonizhka <[email protected]>
102104
orimiles5 <[email protected]>
103105
104106

anova1/docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ interface Results {
142142
* var out = anova1( x, f );
143143
* // returns {...}
144144
*/
145-
declare function anova1( x: NumericArray, y: Array<any>, options?: Options ): Results;
145+
declare function anova1( x: NumericArray, factor: Array<any>, options?: Options ): Results;
146146

147147

148148
// EXPORTS //

padjust/docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ type Method = 'bh' | 'bonferroni' | 'by' | 'holm' | 'hommel';
6969
* var out = padjust( pvalues, 'hommel' );
7070
* // returns [ 0.032, 0.12, ..., 0.6, 0.4 ]
7171
*/
72-
declare function padjust( x: Array<number>, method: Method, comparisons?: number ): Array<number>;
72+
declare function padjust( pvals: Array<number>, method: Method, comparisons?: number ): Array<number>;
7373

7474

7575
// EXPORTS //

0 commit comments

Comments
 (0)