Skip to content

Commit 3968b0e

Browse files
authored
chore: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 94505e5 commit 3968b0e

File tree

2 files changed

+1
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/weibull/mgf

2 files changed

+1
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/weibull/mgf/include/stdlib/stats/base/dists/weibull/mgf.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-
* Evaluates the mgf of a Weibull distribution.
30+
* Evaluates the moment-generating function (MGF) for a Weibull distribution with shape `k` and scale `lambda` at a value `t`.
3131
*/
3232
double stdlib_base_dists_weibull_mgf( const double t, const double k, const double lambda );
3333

lib/node_modules/@stdlib/stats/base/dists/weibull/mgf/src/main.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#include "stdlib/math/base/special/gamma.h"
2222
#include "stdlib/constants/float64/eps.h"
2323

24-
// MAIN //
2524

2625
/**
2726
* Evaluates the moment-generating function (MGF) for a Weibull distribution with shape `k` and scale `lambda` at a value `t`.

0 commit comments

Comments
 (0)