Skip to content

Commit ea254b8

Browse files
authored
chore: fix printout
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent b10ed74 commit ea254b8

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/poisson/logpmf

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ int main( void ) {
225225
x = stdlib_base_ceil( random_uniform( 0.0, 10.0 ) );
226226
lambda = random_uniform( 0.0, 10.0);
227227
y = stdlib_base_dists_poisson_logpmf( x, lambda );
228-
printf( "x: %lf, λ: %lf, ln(x;λ): %lf\n", x, lambda, y );
228+
printf( "x: %lf, λ: %lf, ln(P(X=x;λ)): %lf\n", x, lambda, y );
229229
}
230230
}
231231
```

0 commit comments

Comments
 (0)