Skip to content

Commit ae96c7d

Browse files
authored
chore: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent e313199 commit ae96c7d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ var quantile = require( '@stdlib/stats/base/dists/bradford/quantile' );
5555

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

58-
Evaluates the [quantile function][quantile-function] for a [Bradford][bradford-distribution] distribution with shape parameter 'c' at a probability `p`.
58+
Evaluates the [quantile function][quantile-function] for a [Bradford][bradford-distribution] distribution with shape parameter `c` at a probability `p`.
5959

6060
```javascript
6161
var y = quantile( 0.1, 0.1 );

lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var log1p = require( '@stdlib/math/base/special/log1p' );
2828
// MAIN //
2929

3030
/**
31-
* Evaluates the quantile function for a Bradford distribution with shape parameter 'c' at a probability `p`.
31+
* Evaluates the quantile function for a Bradford distribution with shape parameter `c` at a probability `p`.
3232
*
3333
* @param {Probability} p - input value
3434
* @param {PositiveNumber} c - shape parameter

lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/test.factory.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ tape( 'if provided a finite `c`, the function returns a function which returns `
106106
t.end();
107107
});
108108

109-
tape( 'the created function evaluates the quantile for `x` given small `c`', function test( t ) {
109+
tape( 'the created function evaluates the quantile for `p` given small `c`', function test( t ) {
110110
var expected;
111111
var quantile;
112112
var delta;
@@ -133,7 +133,7 @@ tape( 'the created function evaluates the quantile for `x` given small `c`', fun
133133
t.end();
134134
});
135135

136-
tape( 'the created function evaluates the quantile for `x` given a medium `c`', function test( t ) {
136+
tape( 'the created function evaluates the quantile for `p` given a medium `c`', function test( t ) {
137137
var expected;
138138
var quantile;
139139
var delta;
@@ -160,7 +160,7 @@ tape( 'the created function evaluates the quantile for `x` given a medium `c`',
160160
t.end();
161161
});
162162

163-
tape( 'the created function evaluates the quantile for `x` given a large `c`', function test( t ) {
163+
tape( 'the created function evaluates the quantile for `p` given a large `c`', function test( t ) {
164164
var expected;
165165
var quantile;
166166
var delta;

0 commit comments

Comments
 (0)