Skip to content

Commit bdb8233

Browse files
committed
docs: fix up 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: na - 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 2784d45 commit bdb8233

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/pareto-type1/quantile

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/pareto-type1/quantile/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ var quantile = require( '@stdlib/stats/base/dists/pareto-type1/quantile' );
5555

5656
#### quantile( p, alpha, beta )
5757

58-
Evaluates the [quantile function][quantile-function] for a [Pareto (Type I)][pareto-distribution] distribution with parameters `alpha` (shape parameter) and `beta` ( scale parameter).
58+
Evaluates the [quantile function][quantile-function] for a [Pareto (Type I)][pareto-distribution] distribution with parameters `alpha` (shape parameter) and `beta` (scale parameter).
5959

6060
```javascript
6161
var y = quantile( 0.8, 2.0, 1.0 );
@@ -113,7 +113,7 @@ y = quantile( 0.4, 1.0, 0.0 );
113113

114114
#### quantile.factory( alpha, beta )
115115

116-
Returns a function for evaluating the [quantile function][quantile-function] of a [Pareto (Type I)][pareto-distribution] distribution with parameters `alpha` (shape parameter) and `beta` ( scale parameter).
116+
Returns a function for evaluating the [quantile function][quantile-function] of a [Pareto (Type I)][pareto-distribution] distribution with parameters `alpha` (shape parameter) and `beta` (scale parameter).
117117

118118
```javascript
119119
var myquantile = quantile.factory( 2.5, 0.5 );
@@ -185,7 +185,7 @@ for ( i = 0; i < 10; i++ ) {
185185

186186
#### stdlib_base_dists_pareto_type1_quantile( p, alpha, beta )
187187

188-
Returns the quantile of a Pareto (Type I) distribution.
188+
Evaluates the [quantile function][quantile-function] for a [Pareto (Type I)][pareto-distribution] distribution with parameters `alpha` (shape parameter) and `beta` (scale parameter).
189189

190190
```c
191191
double y = stdlib_base_dists_pareto_type1_quantile( 0.8, 2.0, 1.0 );

0 commit comments

Comments
 (0)