Skip to content

Commit 0a5ef3a

Browse files
committed
refactor: fixed indentation in comments
--- 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: passed - 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: missing_dependencies - task: lint_c_benchmarks status: missing_dependencies - 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: passed - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: passed - task: run_c_benchmarks status: passed - 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 639c297 commit 0a5ef3a

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

lib/node_modules/@stdlib/stats/base/dists/arcsine/mode/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,8 @@ int main( void ) {
213213
a = random_uniform( -20.0, 0.0 );
214214
b = random_uniform( a, a + 40.0 );
215215
m = stdlib_base_dists_arcsine_mode( a, b );
216-
217216
printf( "a: %lf, b: %lf, mode(X;a,b): %lf\n", a, b, m );
218217
}
219-
220-
return 0;
221218
}
222219
```
223220

lib/node_modules/@stdlib/stats/base/dists/arcsine/mode/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ int main( void ) {
126126
double elapsed;
127127
int i;
128128

129-
// Use the current time to seed the random number generator:
129+
// Use the current time to seed the random number generator:
130130
srand( time( NULL ) );
131131

132132
print_version();

lib/node_modules/@stdlib/stats/base/dists/arcsine/mode/examples/c/example.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ int main( void ) {
3535
a = random_uniform( -20.0, 0.0 );
3636
b = random_uniform( a, a + 40.0 );
3737
m = stdlib_base_dists_arcsine_mode( a, b );
38-
3938
printf( "a: %lf, b: %lf, mode(X;a,b): %lf\n", a, b, m );
4039
}
41-
42-
return 0;
4340
}

0 commit comments

Comments
 (0)