Skip to content

Commit 1a86216

Browse files
committed
refactor: fixed extra spaces and tabs
--- 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 67575a2 commit 1a86216

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

lib/node_modules/@stdlib/stats/base/dists/hypergeometric/kurtosis/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,8 @@ int main( void ) {
233233
K = stdlib_base_round( random_uniform( 0.0, N ) );
234234
n = stdlib_base_round( random_uniform( 0.0, K ) );
235235
kurtosis = stdlib_base_dists_hypergeometric_kurtosis( N, K, n );
236-
237236
printf( "N: %lf, K: %lf, n: %lf, Kurt(X;N,K,n): %lf\n", N, K, n, kurtosis );
238237
}
239-
240-
return 0;
241238
}
242239
```
243240

lib/node_modules/@stdlib/stats/base/dists/hypergeometric/kurtosis/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ int main( void ) {
131131
double elapsed;
132132
int i;
133133

134-
// Seed the random number generator:
134+
// Seed the random number generator:
135135
srand( time( NULL ) );
136136

137137
print_version();

lib/node_modules/@stdlib/stats/base/dists/hypergeometric/kurtosis/examples/c/example.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ int main( void ) {
3838
K = stdlib_base_round( random_uniform( 0.0, N ) );
3939
n = stdlib_base_round( random_uniform( 0.0, K ) );
4040
kurtosis = stdlib_base_dists_hypergeometric_kurtosis( N, K, n );
41-
4241
printf( "N: %lf, K: %lf, n: %lf, Kurt(X;N,K,n): %lf\n", N, K, n, kurtosis );
4342
}
44-
45-
return 0;
4643
}

0 commit comments

Comments
 (0)