Skip to content

Commit db6f0c7

Browse files
committed
docs: resolve the issue
1 parent 1731696 commit db6f0c7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/normal/logpdf/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ for ( i = 0; i < 10; i++ ) {
142142

143143
<!-- /.examples -->
144144

145+
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
146+
145147
<!-- C interface documentation. -->
146148

147149
* * *
@@ -168,7 +170,7 @@ for ( i = 0; i < 10; i++ ) {
168170
#include "stdlib/stats/base/dists/normal/logpdf.h"
169171
```
170172

171-
#### stdlib_base_dists_normal_logpdf( x, a, b )
173+
#### stdlib_base_dists_normal_logpdf( x, mu, sigma )
172174

173175
Evaluates the natural logarithm of the probability density function (logPDF) for a normal distribution.
174176

lib/node_modules/@stdlib/stats/base/dists/normal/logpdf/src/main.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
#include "stdlib/constants/float64/pinf.h"
2626

2727
/**
28-
* Evaluates the natural logarithm of the cumulative distribution function (CDF) for a Normal distribution
29-
* with mean `mu` and standard deviation `sigma` at a value `x`.
28+
* Evaluates the natural logarithm of the cumulative distribution function (CDF) for a Normal distribution with mean `mu` and standard deviation `sigma` at a value `x`.
3029
*
3130
* @param x input value
3231
* @param mu mean of the distribution

0 commit comments

Comments
 (0)