Skip to content

Commit 5fe2f3e

Browse files
authored
chore: address commit comments for commit f63b6ef
PR-URL: #11001 Closes: #10979 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 416e3f1 commit 5fe2f3e

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/poisson/pmf

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/poisson/pmf/README.md

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

5656
#### pmf( x, lambda )
5757

58-
Evaluates the [probability mass function][pmf] (PMF) of a [Poisson][poisson-distribution] distribution with mean parameter `lambda` at value `x`.
58+
Evaluates the [probability mass function][pmf] (PMF) of a [Poisson][poisson-distribution] distribution with mean parameter `lambda`.
5959

6060
```javascript
6161
var y = pmf( 4.0, 3.0 );
@@ -168,7 +168,7 @@ logEachMap( 'x: %d, λ: %0.4f, P(X=x;λ): %0.4f', x, lambda, pmf );
168168

169169
#### stdlib_base_dists_poisson_pmf( x, lambda )
170170

171-
Evaluates the [probability mass function][pmf] (PMF) of a [Poisson][poisson-distribution] distribution with mean parameter `lambda` at value `x`.
171+
Evaluates the [probability mass function][pmf] (PMF) of a [Poisson][poisson-distribution] distribution with mean parameter `lambda`.
172172

173173
```c
174174
double out = stdlib_base_dists_poisson_pmf( 4.0, 3.0 );

0 commit comments

Comments
 (0)