Skip to content

Commit 75ae81a

Browse files
committed
Auto-generated commit
1 parent 87ce621 commit 75ae81a

File tree

8 files changed

+36
-21
lines changed

8 files changed

+36
-21
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ indent_style = tab
121121
[*.{md,md.txt}]
122122
indent_style = space
123123
indent_size = 4
124-
trim_trailing_whitespace = false
124+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
125125
126126
# Set properties for `usage.txt` files:
127127
[usage.txt]

.github/workflows/test_install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
env:
5151
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
5252

53-
# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
54-
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
53+
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
54+
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
5555

5656
# Define the sequence of job steps...
5757
steps:

.github/workflows/test_published_package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
env:
4848
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
4949

50-
# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
51-
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
50+
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
51+
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
5252

5353
# Define the job's steps:
5454
steps:

CHANGELOG.md

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

7-
## Unreleased (2024-12-17)
7+
## Unreleased (2024-12-29)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`b87254d`](https://github.com/stdlib-js/stdlib/commit/b87254d4535a3b90bf3d0068750ed6e9ca5dbc85) - **docs:** fix parameter descriptions in Weibull distribution packages _(by Philipp Burckhardt)_
1516
- [`32deb11`](https://github.com/stdlib-js/stdlib/commit/32deb11c6a2453748d8db9554b6bb3fdb73a077f) - **docs:** update related packages sections [(#3976)](https://github.com/stdlib-js/stdlib/pull/3976) _(by stdlib-bot)_
1617

1718
</details>
@@ -20,6 +21,18 @@
2021

2122
<!-- /.commits -->
2223

24+
<section class="contributors">
25+
26+
### Contributors
27+
28+
A total of 1 person contributed to this release. Thank you to this contributor:
29+
30+
- Philipp Burckhardt
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
2336
</section>
2437

2538
<!-- /.release -->

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Dan Rose <[email protected]>
2626
Daniel Killenberger <[email protected]>
2727
Daniel Yu <[email protected]>
2828
Debashis Maharana <[email protected]>
29+
Desh Deepak Kant <[email protected]>
2930
Divyansh Seth <[email protected]>
3031
Dominic Lim <[email protected]>
3132
Dominik Moritz <[email protected]>
@@ -75,6 +76,7 @@ Philipp Burckhardt <[email protected]>
7576
Prajwal Kulkarni <[email protected]>
7677
Pranav Goswami <[email protected]>
7778
Pranjal Jha <[email protected]>
79+
Prashant Kumar Yadav <[email protected]>
7880
Pratik Singh <[email protected]>
7981
Pratyush Kumar Chouhan <[email protected]>
8082
Priyansh Prajapati <[email protected]>

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/types/index.d.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ interface TernaryFunction extends PRNG {
138138
* Returns an array containing pseudorandom numbers drawn from a Weibull distribution.
139139
*
140140
* @param len - array length
141-
* @param k - scale parameter
142-
* @param lambda - shape parameter
141+
* @param k - shape parameter
142+
* @param lambda - scale parameter
143143
* @param options - function options
144144
* @returns output array
145145
*/
@@ -148,8 +148,8 @@ interface TernaryFunction extends PRNG {
148148
/**
149149
* Fills an array with pseudorandom numbers drawn from a Weibull distribution.
150150
*
151-
* @param k - scale parameter
152-
* @param lambda - shape parameter
151+
* @param k - shape parameter
152+
* @param lambda - scale parameter
153153
* @param out - output array
154154
* @returns output array
155155
*/
@@ -164,8 +164,8 @@ interface Random extends PRNG {
164164
* Returns an array containing pseudorandom numbers drawn from a Weibull distribution.
165165
*
166166
* @param len - array length
167-
* @param k - scale parameter
168-
* @param lambda - shape parameter
167+
* @param k - shape parameter
168+
* @param lambda - scale parameter
169169
* @param options - function options
170170
* @returns output array
171171
*
@@ -178,8 +178,8 @@ interface Random extends PRNG {
178178
/**
179179
* Fills an array with pseudorandom numbers drawn from a Weibull distribution.
180180
*
181-
* @param k - scale parameter
182-
* @param lambda - shape parameter
181+
* @param k - shape parameter
182+
* @param lambda - scale parameter
183183
* @param out - output array
184184
* @returns output array
185185
*
@@ -204,8 +204,8 @@ interface Random extends PRNG {
204204
*
205205
* - When provided distribution parameters, the returned function returns random variates drawn from the specified distribution.
206206
*
207-
* @param k - scale parameter
208-
* @param lambda - shape parameter
207+
* @param k - shape parameter
208+
* @param lambda - scale parameter
209209
* @param options - function options
210210
* @throws must provide a valid state
211211
* @returns function for creating arrays
@@ -256,8 +256,8 @@ interface Random extends PRNG {
256256
* Returns an array containing pseudorandom numbers drawn from a Weibull distribution.
257257
*
258258
* @param len - array length
259-
* @param k - scale parameter
260-
* @param lambda - shape parameter
259+
* @param k - shape parameter
260+
* @param lambda - scale parameter
261261
* @param options - function options
262262
* @returns output array
263263
*

lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ var factory = require( './factory.js' );
3131
* @name weibull
3232
* @type {Function}
3333
* @param {NonNegativeInteger} len - array length
34-
* @param {PositiveNumber} k - scale parameter
35-
* @param {PositiveNumber} lambda - shape parameter
34+
* @param {PositiveNumber} k - shape parameter
35+
* @param {PositiveNumber} lambda - scale parameter
3636
* @param {Options} [options] - options
3737
* @param {string} [options.dtype="float64"] - output array data type
3838
* @throws {TypeError} first argument must be a nonnegative integer

0 commit comments

Comments
 (0)