Skip to content

Commit 9986db8

Browse files
committed
Auto-generated commit
1 parent d0b5a69 commit 9986db8

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-01-02)
7+
## Unreleased (2025-01-07)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`746eae4`](https://github.com/stdlib-js/stdlib/commit/746eae4688b31749105a872b58aaa5e7fb017ae0) - **docs:** fix argument order _(by Athan Reines)_
2526
- [`0d52a8a`](https://github.com/stdlib-js/stdlib/commit/0d52a8a0eec7221c0147185c4ce3317db0458498) - **chore:** minor clean-up _(by Philipp Burckhardt)_
2627
- [`d88905f`](https://github.com/stdlib-js/stdlib/commit/d88905fbd9006bf223db7ce4959b46f02cf7d73e) - **docs:** fix parameter descriptions in Weibull distribution packages _(by Philipp Burckhardt)_
2728
- [`b87254d`](https://github.com/stdlib-js/stdlib/commit/b87254d4535a3b90bf3d0068750ed6e9ca5dbc85) - **docs:** fix parameter descriptions in Weibull distribution packages _(by Philipp Burckhardt)_
@@ -37,8 +38,9 @@
3738

3839
### Contributors
3940

40-
A total of 2 people contributed to this release. Thank you to the following contributors:
41+
A total of 3 people contributed to this release. Thank you to the following contributors:
4142

43+
- Athan Reines
4244
- Philipp Burckhardt
4345
- Vinit Pandit
4446

CONTRIBUTORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Daniel Killenberger <daniel.killenberger@gmail.com>
2727
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
2828
Debashis Maharana <debashismaharana7854@gmail.com>
2929
Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com>
30+
Dhruv Arvind Singh <154677013+DhruvArvindSingh@users.noreply.github.com>
3031
Divyansh Seth <59174836+sethdivyansh@users.noreply.github.com>
3132
Dominic Lim <46486515+domlimm@users.noreply.github.com>
3233
Dominik Moritz <domoritz@gmail.com>
@@ -117,7 +118,7 @@ UtkershBasnet <119008923+UtkershBasnet@users.noreply.github.com>
117118
Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com>
118119
Varad Gupta <varadgupta21@gmail.com>
119120
Vinit Pandit <106718914+MeastroZI@users.noreply.github.com>
120-
Vivek maurya <155618190+vivekmaurya001@users.noreply.github.com>
121+
Vivek Maurya <vm8118134@gmail.com>
121122
Xiaochuan Ye <tap91624@gmail.com>
122123
Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
123124
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2024 The Stdlib Authors.
1+
Copyright (c) 2016-2025 The Stdlib Authors.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ for ( i = 0; i < 10; i++ ) {
175175
x = randu() * 10.0;
176176
lambda = randu() * 10.0;
177177
k = randu() * 10.0;
178-
y = cdf( x, lambda, k );
178+
y = cdf( x, k, lambda );
179179
console.log( 'x: %d, k: %d, λ: %d, F(x;k,λ): %d', x, k, lambda, y );
180180
}
181181
```

0 commit comments

Comments
 (0)