Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 28, 2024
1 parent bff4c92 commit 393fb25
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

## Unreleased (2024-09-24)
## Unreleased (2024-09-28)

<section class="packages">

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

<details>

- [`b89c97c`](https://github.com/stdlib-js/stdlib/commit/b89c97ce0b812ff0b2aab16b4d77969d44fe3e8c) - **docs:** resolve lint errors in TS declaration files _(by Philipp Burckhardt)_
- [`7fb04a9`](https://github.com/stdlib-js/stdlib/commit/7fb04a92ebae797788f7047feac1caaf6a7a1f4f) - **style:** add missing spaces around parentheses _(by Philipp Burckhardt)_
- [`d7bf560`](https://github.com/stdlib-js/stdlib/commit/d7bf560813d0f6cd44418dad0e8e84dd3f0a1596) - **docs:** improve examples of `stats/base/dists/gumbel` _(by olenkabilonizhka, Philipp Burckhardt)_
- [`9e689ff`](https://github.com/stdlib-js/stdlib/commit/9e689ffcb7c6223afc521f1e574b42f10921cf5e) - **chore:** fix indentation in manifest.json files _(by Philipp Burckhardt)_
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Christopher Dambamuromo <[email protected]>
Dan Rose <[email protected]>
Daniel Killenberger <[email protected]>
Daniel Yu <[email protected]>
Debashis Maharana <[email protected]>
Dominik Moritz <[email protected]>
Dorrin Sotoudeh <[email protected]>
EuniceSim142 <[email protected]>
Expand Down Expand Up @@ -99,6 +100,7 @@ Xiaochuan Ye <[email protected]>
Yernar Yergaziyev <[email protected]>
naveen <[email protected]>
nishant-s7 <[email protected]>
olenkabilonizhka <[email protected]>
orimiles5 <[email protected]>
rainn <[email protected]>
rei2hu <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion anova1/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ interface Results {
* var out = anova1( x, f );
* // returns {...}
*/
declare function anova1( x: NumericArray, y: Array<any>, options?: Options ): Results;
declare function anova1( x: NumericArray, factor: Array<any>, options?: Options ): Results;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion padjust/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ type Method = 'bh' | 'bonferroni' | 'by' | 'holm' | 'hommel';
* var out = padjust( pvalues, 'hommel' );
* // returns [ 0.032, 0.12, ..., 0.6, 0.4 ]
*/
declare function padjust( x: Array<number>, method: Method, comparisons?: number ): Array<number>;
declare function padjust( pvals: Array<number>, method: Method, comparisons?: number ): Array<number>;


// EXPORTS //
Expand Down

0 comments on commit 393fb25

Please sign in to comment.