Skip to content

Commit e83b822

Browse files
committed
refactor: fix indentation of comments in header file
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent a56b554 commit e83b822

File tree

1 file changed

+9
-9
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/negative-binomial/mgf/include/stdlib/stats/base/dists/negative-binomial

1 file changed

+9
-9
lines changed

lib/node_modules/@stdlib/stats/base/dists/negative-binomial/mgf/include/stdlib/stats/base/dists/negative-binomial/mgf.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@
2020
#define STDLIB_STATS_BASE_DISTS_NEGATIVE_BINOMIAL_MGF_H
2121

2222
/*
23-
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler.
24-
*/
23+
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler.
24+
*/
2525
#ifdef __cplusplus
2626
extern "C" {
2727
#endif
2828

2929
/**
30-
* Evaluates the moment-generating function (MGF) for a negative binomial distribution.
31-
*
32-
* @param t input value
33-
* @param r number of successes until experiment is stopped
34-
* @param p success probability
35-
* @return evaluated MGF
36-
*/
30+
* Evaluates the moment-generating function (MGF) for a negative binomial distribution.
31+
*
32+
* @param t input value
33+
* @param r number of successes until experiment is stopped
34+
* @param p success probability
35+
* @return evaluated MGF
36+
*/
3737
double stdlib_base_negative_binomial_mgf(const double t, const double r, const double p);
3838

3939
#ifdef __cplusplus

0 commit comments

Comments
 (0)