Skip to content

Commit 52c06ee

Browse files
committed
docs: fix 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: passed - task: lint_package_json status: na - task: lint_repl_help status: na - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 9e5f4c4 commit 52c06ee

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/random/array/weibull/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ var out = weibull( 10, 2.0, 5.0 );
4242
The function has the following parameters:
4343

4444
- **len**: output array length.
45-
- **k**: scale parameter.
46-
- **lambda**: shape parameter.
45+
- **k**: shape parameter.
46+
- **lambda**: scale parameter.
4747
- **options**: function options.
4848

4949
The function accepts the following `options`:
@@ -80,8 +80,8 @@ var bool = ( out === x );
8080

8181
The function has the following parameters:
8282

83-
- **k**: scale parameter.
84-
- **lambda**: shape parameter.
83+
- **k**: shape parameter.
84+
- **lambda**: scale parameter.
8585
- **out**: output array.
8686

8787
#### weibull.factory( \[k, lambda, ]\[options] )

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ var DTYPES = dtypes( 'real_floating_point_and_generic' );
3838
*
3939
* @name factory
4040
* @type {Function}
41-
* @param {PositiveNumber} [k] - scale parameter
42-
* @param {PositiveNumber} [lambda] - shape parameter
41+
* @param {PositiveNumber} [k] - shape parameter
42+
* @param {PositiveNumber} [lambda] - scale parameter
4343
* @param {Options} [options] - function options
4444
* @param {PRNG} [options.prng] - pseudorandom number generator which generates uniformly distributed pseudorandom numbers
4545
* @param {PRNGSeedMT19937} [options.seed] - pseudorandom number generator seed

0 commit comments

Comments
 (0)