Skip to content

Commit 8d005d6

Browse files
committed
Fix: #5230
1 parent 86b2b7e commit 8d005d6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
/**
2525
* Evaluates the quantile function for an exponential distribution with rate parameter `lambda` at a probability `p`.
26+
2627
* @param p - input probability
2728
* @param lambda rate parameter
2829
* @return quantile

lib/node_modules/@stdlib/stats/base/dists/exponential/quantile/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ tape( 'if provided `NaN` for any parameter, the function returns `NaN`', opts, f
6868
t.end();
6969
});
7070

71-
tape( 'if provided a number outside `[0,1]` for `p` and a finite `lambda`, the function returns `NaN`', function test( t ) {
71+
tape( 'if provided a number outside `[0,1]` for `p` and a finite `lambda`, the function returns `NaN`', opts, function test( t ) {
7272
var y = quantile( 2.2, 1.0 );
7373
t.equal( isnan( y ), true, 'returns true' );
7474
y = quantile( -0.2, 1.0 );

0 commit comments

Comments
 (0)