Skip to content

Commit 5186577

Browse files
authored
chore: fix copy & paste error
PR-URL: #5247 Closes: #5230 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 330e8ac commit 5186577

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

+2-2
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

+1-1
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)