Skip to content

Commit ed99b85

Browse files
committed
chore: minor clean-up
1 parent 0e887d5 commit ed99b85

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/bernoulli/mode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Returns the [mode][mode] of a [Bernoulli][bernoulli-distribution] distribution w
169169

170170
```c
171171
double out = stdlib_base_dists_bernoulli_mode( 0.1 );
172-
// returns 0.325
172+
// returns 0
173173
```
174174

175175
The function accepts the following arguments:

lib/node_modules/@stdlib/stats/base/dists/beta/skewness/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ double out = stdlib_base_dists_beta_skewness( 1.0, 1.0 );
182182
The function accepts the following arguments:
183183

184184
- **alpha**: `[in] double` first shape parameter.
185-
- **beta**: `[in] double` second shape parameter.
185+
- **beta**: `[in] double` second shape parameter.
186186

187187
```c
188188
double stdlib_base_dists_beta_skewness( const double alpha, const double beta );

lib/node_modules/@stdlib/stats/base/dists/beta/skewness/src/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
#include "stdlib/stats/base/dists/beta/skewness.h"
2020
#include "stdlib/math/base/special/sqrt.h"
21+
2122
/**
2223
* Returns the skewness of a beta distribution.
2324
*

0 commit comments

Comments
 (0)