Skip to content

Commit c642b46

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 54de59c commit c642b46

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ The function accepts the following arguments:
189189
- **n**: `[in] double` number of draws.
190190

191191
```c
192-
double stdlib_base_dists_hypergeometric_skewnes ( const double N, const double K, const double n );
192+
double stdlib_base_dists_hypergeometric_skewness ( const double N, const double K, const double n );
193193
```
194194
195195
</section>
@@ -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
skew = stdlib_base_dists_hypergeometric_skewness( N, K, n );
236-
237236
printf( "N: %lf, K: %lf, n: %lf, skew(X;N,K,n): %lf\n", N, K, n, skew );
238237
}
239-
240-
return 0;
241238
}
242239
```
243240

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

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

132-
// Use the current time to seed the random number generator:
132+
// Use the current time to seed the random number generator:
133133
srand( time( NULL ) );
134134

135135
print_version();

lib/node_modules/@stdlib/stats/base/dists/hypergeometric/skewness/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
skew = stdlib_base_dists_hypergeometric_skewness( N, K, n );
41-
4241
printf( "N: %lf, K: %lf, n: %lf, skew(X;N,K,n): %lf\n", N, K, n, skew );
4342
}
44-
45-
return 0;
4643
}

0 commit comments

Comments
 (0)