Skip to content

Commit

Permalink
chore: update C doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
Neerajpathak07 committed Feb 5, 2025
1 parent 025599f commit 77fde89
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @param t input value
* @param p success probability
* @returns moment-generating function
* @returns evaluated mgf
*
* @example
* double y = stdlib_base_dists_erlang_mgf( 0.3, 1, 1.0 );
Expand All @@ -42,5 +42,5 @@ double stdlib_base_dists_erlang_mgf( const double t, const double k, const doubl
) {
return 0.0 / 0.0;
}
return stdlib_base_pow( 1.0 - (t/lambda), -k );
return stdlib_base_pow( 1.0 - (t / lambda ), -k );
}

0 comments on commit 77fde89

Please sign in to comment.