Skip to content

Commit bd984ea

Browse files
committed
chore: minor 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: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - 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 1fe6f65 commit bd984ea

File tree

6 files changed

+3
-9
lines changed

6 files changed

+3
-9
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,6 @@ for ( i = 0; i < 10; i++ ) {
156156

157157
<!-- /.examples -->
158158

159-
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
160-
161159
<!-- C interface documentation. -->
162160

163161
* * *

lib/node_modules/@stdlib/stats/base/dists/frechet/stdev/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,6 @@ for ( i = 0; i < 10; i++ ) {
156156

157157
<!-- /.examples -->
158158

159-
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
160-
161159
<!-- C interface documentation. -->
162160

163161
* * *

lib/node_modules/@stdlib/stats/base/dists/frechet/variance/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,6 @@ for ( i = 0; i < 10; i++ ) {
156156

157157
<!-- /.examples -->
158158

159-
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
160-
161159
<!-- C interface documentation. -->
162160

163161
* * *

lib/node_modules/@stdlib/stats/base/dists/geometric/mean/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ bench( pkg, function benchmark( b ) {
4545

4646
b.tic();
4747
for ( i = 0; i < b.iterations; i++ ) {
48-
y = mean( p[ i % 100 ] );
48+
y = mean( p[ i % len ] );
4949
if ( isnan( y ) ) {
5050
b.fail( 'should not return NaN' );
5151
}

lib/node_modules/@stdlib/stats/base/dists/geometric/mean/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ bench( pkg+'::native', opts, function benchmark( b ) {
5454

5555
b.tic();
5656
for ( i = 0; i < b.iterations; i++ ) {
57-
y = mean( p[ i % 100 ] );
57+
y = mean( p[ i % len ] );
5858
if ( isnan( y ) ) {
5959
b.fail( 'should not return NaN' );
6060
}

lib/node_modules/@stdlib/stats/base/dists/geometric/mean/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*
2828
* @example
2929
* double y = stdlib_base_dists_geometric_mean( 0.1 );
30-
* // returns 10.0
30+
* // returns 9.0
3131
*/
3232
double stdlib_base_dists_geometric_mean( const double p ) {
3333
if (

0 commit comments

Comments
 (0)