Skip to content

Commit 6f2f6c5

Browse files
committed
chore: address commit comments for commit 75a786a (issue #7452)
1 parent 72fe905 commit 6f2f6c5

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/lognormal/pdf

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/lognormal/pdf/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ var pdf = require( '@stdlib/stats/base/dists/lognormal/pdf' );
5656

5757
#### pdf( x, mu, sigma )
5858

59-
Evaluates the [probability density function][pdf] (PDF) of a [lognormal][lognormal-distribution] distribution with parameters `mu` (location parameter) and `sigma` (scale parameter).
59+
Evaluates the [probability density function][pdf] (PDF) for a [lognormal][lognormal-distribution] distribution with parameters `mu` (location parameter) and `sigma` (scale parameter).
6060

6161
```javascript
6262
var y = pdf( 2.0, 0.0, 1.0 );
@@ -167,7 +167,7 @@ for ( i = 0; i < 10; i++ ) {
167167

168168
#### stdlib_base_dists_lognormal_pdf( x, mu, sigma )
169169

170-
Evaluates the [probability density function][pdf] (PDF) of a [lognormal][lognormal-distribution] distribution with parameters input value `x`, location parameter `mu` and scale parameter `sigma`.
170+
Evaluates the [probability density function][pdf] (PDF) of a [lognormal][lognormal-distribution] distribution with location parameter `mu` and scale parameter `sigma`.
171171

172172
```c
173173
double y = stdlib_base_dists_lognormal_pdf( 2.0, 0.0, 1.0 );

0 commit comments

Comments
 (0)