Skip to content

Commit 8085ec9

Browse files
authored
docs: fix incorrect return value in C usage section triangular/mean
PR-URL: #10958 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 4f7ce62 commit 8085ec9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/stats/base/dists/triangular/mean

lib/node_modules/@stdlib/stats/base/dists/triangular/mean/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Returns the [expected value][expected-value] of a [triangular][triangular-distri
173173

174174
```c
175175
double out = stdlib_base_dists_triangular_mean( 0.0, 1.0, 0.5 );
176-
// returns ~0.333
176+
// returns 0.5
177177
```
178178

179179
The function accepts the following arguments:

0 commit comments

Comments
 (0)