Skip to content

Commit 56e6ec9

Browse files
committed
docs: fix parameter descriptions
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent f877ae6 commit 56e6ec9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/random/base/weibull/docs/repl.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
Parameters
1010
----------
1111
k: number
12-
Scale parameter.
12+
Shape parameter.
1313

1414
λ: number
15-
Shape parameter.
15+
Scale parameter.
1616

1717
Returns
1818
-------
@@ -37,10 +37,10 @@
3737
Parameters
3838
----------
3939
k: number (optional)
40-
Scale parameter.
40+
Shape parameter.
4141

4242
λ: number (optional)
43-
Shape parameter.
43+
Scale parameter.
4444

4545
options: Object (optional)
4646
Options.

lib/node_modules/@stdlib/random/base/weibull/lib/factory.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ var weibull0 = require( './weibull.js' );
4141
/**
4242
* Returns a pseudorandom number generator for generating Weibull distributed random numbers.
4343
*
44-
* @param {PositiveNumber} [k] - scale parameter
45-
* @param {PositiveNumber} [lambda] - shape parameter
44+
* @param {PositiveNumber} [k] - shape parameter
45+
* @param {PositiveNumber} [lambda] - scale parameter
4646
* @param {Options} [options] - function options
4747
* @param {PRNG} [options.prng] - pseudorandom number generator which generates uniformly distributed pseudorandom numbers
4848
* @param {PRNGSeedMT19937} [options.seed] - pseudorandom number generator seed

0 commit comments

Comments
 (0)