Skip to content

Commit 98c75ef

Browse files
chore: update C doxygen
1 parent ebc26a6 commit 98c75ef

File tree

3 files changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/erlang/entropy

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/erlang/entropy/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_entropy( k, lambda )
175175

176-
Returns the differential entropy for a erlang distribution with shape parameter `k` and rate parameter `lambda`.
176+
Returns the differential entropy of an Erlang distribution with shape parameter `k` and rate parameter `lambda`.
177177

178178
```c
179179
double y = stdlib_base_dists_erlang_entropy( 1.0, 1.0 );

lib/node_modules/@stdlib/stats/base/dists/erlang/entropy/include/stdlib/stats/base/dists/erlang/entropy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Returns the differential entropy for a erlang distribution with shape parameter `k` and rate parameter `lambda`.
30+
* Returns the differential entropy for a Erlang distribution with shape parameter `k` and rate parameter `lambda`.
3131
*/
3232
double stdlib_base_dists_erlang_entropy( const double k, const double lambda );
3333

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

2727
/**
28-
* Returns the differential entropy for a erlang distribution with shape parameter `k` and rate parameter `lambda`.
28+
* Returns the differential entropy for a Erlang distribution with shape parameter `k` and rate parameter `lambda`.
2929
*
3030
* @param k shape parameter
3131
* @param lambda rate parameter

0 commit comments

Comments
 (0)