Skip to content

Commit f6c0a18

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 711b577 commit f6c0a18

File tree

1 file changed

+8
-8
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/arcsine/skewness/include/stdlib/stats/base/dists/arcsine

1 file changed

+8
-8
lines changed

lib/node_modules/@stdlib/stats/base/dists/arcsine/skewness/include/stdlib/stats/base/dists/arcsine/skewness.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@
2020
#define STDLIB_STATS_BASE_DISTS_ARCSINE_SKEWNESS_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 skewness of an arcsine distribution with minimum support `a` and maximum support `b`.
31-
*
32-
* @param a minimum support
33-
* @param b maximum support
34-
* @return skewness of the distribution
35-
*/
30+
* Returns the skewness of an arcsine distribution with minimum support `a` and maximum support `b`.
31+
*
32+
* @param a minimum support
33+
* @param b maximum support
34+
* @return skewness of the distribution
35+
*/
3636
double stdlib_base_dists_arcsine_skewness( const double a, const double b );
3737

3838
#ifdef __cplusplus

0 commit comments

Comments
 (0)