Skip to content

Commit 77fde89

Browse files
chore: update C doxygen
1 parent 025599f commit 77fde89

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/erlang/mgf/src

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @param t input value
2828
* @param p success probability
29-
* @returns moment-generating function
29+
* @returns evaluated mgf
3030
*
3131
* @example
3232
* double y = stdlib_base_dists_erlang_mgf( 0.3, 1, 1.0 );
@@ -42,5 +42,5 @@ double stdlib_base_dists_erlang_mgf( const double t, const double k, const doubl
4242
) {
4343
return 0.0 / 0.0;
4444
}
45-
return stdlib_base_pow( 1.0 - (t/lambda), -k );
45+
return stdlib_base_pow( 1.0 - (t / lambda ), -k );
4646
}

0 commit comments

Comments
 (0)