Skip to content

Commit 08ce370

Browse files
chore: resolve lint error and minor changes
--- 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: passed - 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 --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: passed - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 8e68902 commit 08ce370

File tree

2 files changed

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

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/triangular/quantile/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ for ( i = 0; i < 25; i++ ) {
184184
#include "stdlib/stats/base/dists/triangular/quantile.h"
185185
```
186186

187-
#### stdlib_base_dists_triangular_quantile( a, b, c )
187+
#### stdlib_base_dists_triangular_quantile( p, a, b, c )
188188

189189
Evaluates the [quantile function][quantile-function] for a [triangular][triangular-distribution] distribution with parameters `a` (lower limit), `b` (upper limit) and `c` (mode).
190190

@@ -195,7 +195,7 @@ double out = stdlib_base_dists_triangular_quantile( 0.9, -1.0, 1.0, 0.0 );
195195

196196
The function accepts the following arguments:
197197

198-
- **p**: `[in] double` input value.
198+
- **p**: `[in] double` input probability.
199199
- **a**: `[in] double` minimum support.
200200
- **b**: `[in] double` maximum support.
201201
- **c**: `[in] double` mode.

lib/node_modules/@stdlib/stats/base/dists/triangular/quantile/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Returns the value of quantile function of a triangular distribution.
2525
*
26-
* @param p input value
26+
* @param p input probability
2727
* @param a minimum support
2828
* @param b maximum support
2929
* @param c mode

0 commit comments

Comments
 (0)