Skip to content

Commit 51e3867

Browse files
committed
chore: clean-up
--- 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: passed - task: lint_c_examples status: passed - 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 ---
1 parent 843d1d0 commit 51e3867

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ logEachMap( 'p: %0.4f, Kurt(X;p): %0.4f', p, kurtosis );
117117

118118
</section>
119119

120+
<!-- /.examples -->
121+
120122
<!-- C interface documentation. -->
121123

122124
* * *

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ int main( void ) {
2828
for ( i = 0; i < 25; i++ ) {
2929
p = (double)rand() / ( (double)RAND_MAX + 1.0 );
3030
y = stdlib_base_dists_bernoulli_kurtosis( p );
31-
printf( "x: %lf , Kurt(X;p): %lf\n", p, y );
31+
printf( "x: %lf, Kurt(X;p): %lf\n", p, y );
3232
}
3333
}

lib/node_modules/@stdlib/stats/base/dists/bernoulli/kurtosis/src/addon.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@
1919
#include "stdlib/math/base/napi/unary.h"
2020
#include "stdlib/stats/base/dists/bernoulli/kurtosis.h"
2121

22-
// cppcheck-suppress shadowFunction
2322
STDLIB_MATH_BASE_NAPI_MODULE_D_D( stdlib_base_dists_bernoulli_kurtosis )

0 commit comments

Comments
 (0)