Skip to content

Commit 18a1bcc

Browse files
committed
chore: remove excess trailing whitespace
--- 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: passed - task: lint_c_examples status: passed - task: lint_c_benchmarks status: passed - 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 ---
1 parent f32a0ed commit 18a1bcc

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,5 +138,3 @@ int main( void ) {
138138

139139
return 0;
140140
}
141-
142-

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ int main( void ) {
3636
printf( "λ: %lf, Kurt(X;λ): %lf\n", lambda, y );
3737
}
3838
}
39-

lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/include/stdlib/stats/base/dists/planck/kurtosis.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ double stdlib_base_dists_planck_kurtosis( const double lambda );
3636
#endif
3737

3838
#endif // !STDLIB_STATS_BASE_DISTS_PLANCK_KURTOSIS_H
39-

lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/src/main.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,5 @@ double stdlib_base_dists_planck_kurtosis( const double lambda ) {
3434
if ( stdlib_base_is_nan( lambda ) || lambda <= 0.0 ) {
3535
return 0.0/0.0; // NaN
3636
}
37-
3837
return 4.0 + ( 2.0 * stdlib_base_cosh( lambda ) );
3938
}
40-

0 commit comments

Comments
 (0)