Skip to content

Commit 8b42e1c

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 de2f5bb commit 8b42e1c

File tree

1 file changed

+9
-9
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/hypergeometric/kurtosis/include/stdlib/stats/base/dists/hypergeometric

1 file changed

+9
-9
lines changed

Diff for: lib/node_modules/@stdlib/stats/base/dists/hypergeometric/kurtosis/include/stdlib/stats/base/dists/hypergeometric/kurtosis.h

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@
2020
#define STDLIB_STATS_BASE_DISTS_HYPERGEOMETRIC_KURTOSIS_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-
* Returns the excess kurtosis of a hypergeometric distribution with population size `N`, subpopulation size `K`, and number of draws `n`.
31-
*
32-
* @param N population size
33-
* @param K subpopulation size
34-
* @param n number of draws
35-
* @return kurtosis of the distribution
36-
*/
30+
* Returns the excess kurtosis of a hypergeometric distribution with population size `N`, subpopulation size `K`, and number of draws `n`.
31+
*
32+
* @param N population size
33+
* @param K subpopulation size
34+
* @param n number of draws
35+
* @return kurtosis of the distribution
36+
*/
3737
double stdlib_base_dists_hypergeometric_kurtosis( const double N, const double K, const double n );
3838

3939
#ifdef __cplusplus

0 commit comments

Comments
 (0)