Skip to content

Commit 10cd4eb

Browse files
committed
style: add spaces and use leading slash in relative require
--- 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: passed - 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: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 12181cb commit 10cd4eb

File tree

2 files changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/anova1/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
'use strict';
2020

21-
var anova1 = require( '../lib/' );
21+
var anova1 = require( './../lib' );
2222

2323
var x = [ 3, 4, 5, 6, 2, 5, 10, 12, 8, 10 ];
2424
var f = [ 'control', 'treatA', 'treatB', 'control', 'treatA', 'treatB', 'control', 'treatA', 'treatB', 'control' ];
@@ -27,7 +27,7 @@ var out = anova1( x, f, {
2727
'decision': true
2828
});
2929

30-
console.log(out.print());
30+
console.log( out.print() );
3131

3232
out = anova1( x, f, {
3333
'alpha': 0.9

lib/node_modules/@stdlib/stats/base/dists/truncated-normal/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ var mu = 175.0;
3333
var sigma = 10.0;
3434

3535
// Calculate the probability density function (PDF) for a height of 180 cm:
36-
console.log(truncatedNormal.pdf( 180, a, b, mu, sigma ) );
36+
console.log( truncatedNormal.pdf( 180, a, b, mu, sigma ) );
3737
// => ~0.036

0 commit comments

Comments
 (0)