Skip to content

Commit f3520ca

Browse files
committed
chore: fix copy & paste error
--- 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: na - 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 c45b0ba commit f3520ca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

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

5656
#### quantile( p, lambda )
5757

58-
Evaluates the [quantile function][quantile-function] for a [exponential][exponential-distribution] distribution with rate parameter `lambda`.
58+
Evaluates the [quantile function][quantile-function] for an [exponential][exponential-distribution] distribution with rate parameter `lambda`.
5959

6060
```javascript
6161
var y = quantile( 0.5, 0.1 );
@@ -165,7 +165,7 @@ for ( i = 0; i < 10; i++ ) {
165165

166166
#### stdlib_base_dists_exponential_quantile( p, lambda )
167167

168-
Evaluates the [quantile function][quantile-function] for a [exponential][exponential-distribution] distribution with rate parameter `lambda`.
168+
Evaluates the [quantile function][quantile-function] for an [exponential][exponential-distribution] distribution with rate parameter `lambda`.
169169

170170
```c
171171
double out = stdlib_base_dists_exponential_quantile( 0.8, 1.0 );

lib/node_modules/@stdlib/stats/base/dists/exponential/quantile/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ static double random_uniform( const double min, const double max ) {
9595
static double benchmark( void ) {
9696
double elapsed;
9797
double lambda[ 100 ];
98-
double y;
9998
double p[ 100 ];
99+
double y;
100100
double t;
101101
int i;
102102

0 commit comments

Comments
 (0)