Skip to content

Commit 916aaad

Browse files
authored
chore: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent b2dbcae commit 916aaad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ for ( i = 0; i < 10; i++ ) {
173173

174174
#### stdlib_base_dists_erlang_mode( k, lambda )
175175

176-
Evaluates the [mode][mode] of an [Erlang][erlang-distribution] distribution with parameters `k` (shape parameter) and `lambda` (rate parameter).
176+
Returns the [mode][mode] of an [Erlang][erlang-distribution] distribution with parameters `k` (shape parameter) and `lambda` (rate parameter).
177177

178178
```c
179179
double out = stdlib_base_dists_erlang_mode( 1, 1.0 );

lib/node_modules/@stdlib/stats/base/dists/erlang/mode/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* @return evaluated mode
2929
*
3030
* @example
31-
* double y = stdlib_base_erlang_mode( 1, 1.0 );
31+
* double y = stdlib_base_dists_erlang_mode( 1, 1.0 );
3232
* // returns 0.0
3333
*/
3434
double stdlib_base_dists_erlang_mode( const int32_t k, const double lambda ) {

0 commit comments

Comments
 (0)