Skip to content

Commit 186dd10

Browse files
committed
Auto-generated commit
1 parent 90537ab commit 186dd10

File tree

12 files changed

+17
-13
lines changed

12 files changed

+17
-13
lines changed

CHANGELOG.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
## Unreleased (2024-09-07)
7+
## Unreleased (2024-09-17)
88

99
<section class="packages">
1010

@@ -21,7 +21,7 @@
2121
A total of 2 people contributed to this release. Thank you to the following contributors:
2222

2323
- Philipp Burckhardt
24-
- Tufail
24+
- Tufailahmed Bargir
2525

2626
</section>
2727

@@ -33,7 +33,10 @@ A total of 2 people contributed to this release. Thank you to the following cont
3333

3434
<details>
3535

36-
- [`71af75e`](https://github.com/stdlib-js/stdlib/commit/71af75ec2c9066eb59288ad525ddbf1ad782db0c) - **docs:** improve examples `stats/base/dists/triangular` namespace _(by Tufail, Philipp Burckhardt)_
36+
- [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_
37+
- [`ed44fee`](https://github.com/stdlib-js/stdlib/commit/ed44feecb9eaa5e0849d1a533e5415624d0aa338) - **style:** use imperative in package.json description and end with period _(by Philipp Burckhardt)_
38+
- [`31fd427`](https://github.com/stdlib-js/stdlib/commit/31fd42744ec5d7073041f97c6f72350b8005c0fc) - **style:** remove unwanted empty lines _(by Philipp Burckhardt)_
39+
- [`71af75e`](https://github.com/stdlib-js/stdlib/commit/71af75ec2c9066eb59288ad525ddbf1ad782db0c) - **docs:** improve examples `stats/base/dists/triangular` namespace _(by Tufailahmed Bargir, Philipp Burckhardt)_
3740

3841
</details>
3942

CONTRIBUTORS

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#
33
# Contributors listed in alphabetical order.
44

5+
Aayush Khanna <[email protected]>
56
Adarsh Palaskar <[email protected]>
67
Aditya Sapra <[email protected]>
78
AgPriyanshu18 <[email protected]>
@@ -32,12 +33,14 @@ Hridyanshu <[email protected]>
3233
Jaimin Godhani <[email protected]>
3334
James Gelok <[email protected]>
3435
Jaysukh Makvana <[email protected]>
36+
Jenish Thapa <[email protected]>
3537
Jithin KS <[email protected]>
3638
Joel Mathew Koshy <[email protected]>
3739
Joey Reed <[email protected]>
3840
Jordan Gallivan <[email protected]>
3941
Joris Labie <[email protected]>
4042
Justin Dennison <[email protected]>
43+
Kaif Mohd <[email protected]>
4144
Karthik Prakash <[email protected]>
4245
4346
Krishnendu Das <[email protected]>
@@ -87,8 +90,10 @@ Stephannie Jiménez Gacha <[email protected]>
8790
Suraj kumar <[email protected]>
8891
Tirtadwipa Manunggal <[email protected]>
8992
Tudor Pagu <[email protected]>
93+
Tufailahmed Bargir <[email protected]>
9094
Utkarsh <http://[email protected]>
9195
Utkarsh Raj <[email protected]>
96+
Vaibhav Patel <[email protected]>
9297
Varad Gupta <[email protected]>
9398
Xiaochuan Ye <[email protected]>
9499
Yernar Yergaziyev <[email protected]>

base/dists/beta/mgf/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ import mgf = require( './index' );
6464
mgf.factory( 3, 4 ); // $ExpectType Unary
6565
}
6666

67-
6867
// The `factory` method returns a function which returns a number...
6968
{
7069
const fcn = mgf.factory( 3, 4 );

base/dists/discrete-uniform/mgf/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ import mgf = require( './index' );
6464
mgf.factory( 3, 4 ); // $ExpectType Unary
6565
}
6666

67-
6867
// The `factory` method returns a function which returns a number...
6968
{
7069
const fcn = mgf.factory( 3, 4 );

base/dists/exponential/pdf/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ var y = pdf( 2.0, -1.0 );
8484

8585
#### pdf.factory( lambda )
8686

87-
Partially apply `lambda` to create a reusable `function` for evaluating the [PDF][pdf].
87+
Partially applies `lambda` to create a reusable `function` for evaluating the [PDF][pdf].
8888

8989
```javascript
9090
var mypdf = pdf.factory( 0.1 );

base/dists/gamma/mgf/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ y = mgf( 2.0, 1.0, -1.0 );
111111

112112
#### mgf.factory( alpha, beta )
113113

114-
Return a function for evaluating the [MGF][mgf] of a [gamma][gamma-distribution] distribution with parameters `alpha` (shape parameter) and `beta` (rate parameter).
114+
Returns a function for evaluating the [MGF][mgf] of a [gamma][gamma-distribution] distribution with parameters `alpha` (shape parameter) and `beta` (rate parameter).
115115

116116
```javascript
117117
var mymgf = mgf.factory( 3.0, 1.5 );

base/dists/gumbel/pdf/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ y = pdf( 2.0, 8.0, 0.0 );
9393

9494
#### pdf.factory( mu, beta )
9595

96-
Partially apply `mu` and `beta` to create a reusable `function` for evaluating the PDF.
96+
Partially applies `mu` and `beta` to create a reusable `function` for evaluating the PDF.
9797

9898
```javascript
9999
var mypdf = pdf.factory( 10.0, 2.0 );

base/dists/laplace/logpdf/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ y = logpdf( 2.0, 8.0, 0.0 );
9393

9494
#### logpdf.factory( mu, b )
9595

96-
Return a `function` for evaluating the logarithm of the [PDF][pdf] for a [Laplace][laplace-distribution] distribution with parameters `mu` (location parameter) and `b > 0` (scale parameter).
96+
Returns a `function` for evaluating the logarithm of the [PDF][pdf] for a [Laplace][laplace-distribution] distribution with parameters `mu` (location parameter) and `b > 0` (scale parameter).
9797

9898
```javascript
9999
var mylogpdf = logpdf.factory( 10.0, 2.0 );

base/dists/normal/pdf/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ y = pdf( 8.0, 8.0, 0.0 );
9797

9898
#### pdf.factory( mu, sigma )
9999

100-
Partially apply `mu` and `sigma` to create a reusable `function` for evaluating the PDF.
100+
Partially applies `mu` and `sigma` to create a reusable `function` for evaluating the PDF.
101101

102102
```javascript
103103
var mypdf = pdf.factory( 10.0, 2.0 );

base/dists/uniform/mgf/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ import mgf = require( './index' );
6464
mgf.factory( 3, 4 ); // $ExpectType Unary
6565
}
6666

67-
6867
// The `factory` method returns a function which returns a number...
6968
{
7069
const fcn = mgf.factory( 3, 4 );

base/dists/weibull/mgf/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ import mgf = require( './index' );
6464
mgf.factory( 3, 4 ); // $ExpectType Unary
6565
}
6666

67-
6867
// The `factory` method returns a function which returns a number...
6968
{
7069
const fcn = mgf.factory( 3, 4 );

vartest/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/stats/vartest",
33
"version": "0.0.0",
4-
"description": "Two-sample F-test for equal variances",
4+
"description": "Two-sample F-test for equal variances.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)