Skip to content

Commit a4464fb

Browse files
chore: address commit comments for commit b02b1dc
PR-URL: #7423 Closes: #7415 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 490d39b commit a4464fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Evaluates the [probability density function][pdf] (PDF) for a [chi][chi-distribu
169169

170170
```c
171171
double out = stdlib_base_dists_chi_pdf( 2.0, 2.0 );
172-
// returns ~0.270
172+
// returns ~0.2707
173173
```
174174

175175
The function accepts the following arguments:

lib/node_modules/@stdlib/stats/base/dists/chi/pdf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*
3333
* @example
3434
* double y = stdlib_base_dists_chi_pdf( 2.0, 2.0 );
35-
* // returns ~0.270
35+
* // returns ~0.2707
3636
*/
3737
double stdlib_base_dists_chi_pdf( const double x, const double k ) {
3838
double out;

0 commit comments

Comments
 (0)