Skip to content

Commit c761dd8

Browse files
committed
docs: fix method name
--- 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: passed - task: lint_javascript_src status: passed - 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: 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: passed - task: lint_license_headers status: passed ---
1 parent abad8ce commit c761dd8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/to-json/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
... 'sd': 0.4563,
2424
... 'ci': new {{alias:@stdlib/array/float64}}( [ 9.9983, 11.4123 ] ),
2525
... 'alternative': 'two-sided',
26-
... 'method': 'One sample Z-test'
26+
... 'method': 'One-sample Z-test'
2727
... };
2828
> var o = {{alias}}( res )
2929
{...}

lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/to-json/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ interface Results {
8686
* 'sd': 0.4563,
8787
* 'ci': new Float64Array( [ 9.9983, 11.4123 ] ),
8888
* 'alternative': 'two-sided',
89-
* 'method': 'One sample Z-test'
89+
* 'method': 'One-sample Z-test'
9090
* };
9191
*
9292
* var obj = toJSON( results );

lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/to-json/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import res2json = require( './index' );
3232
'sd': 0.4563,
3333
'ci': new Float64Array( [ 9.9983, 11.4123 ] ),
3434
'alternative': 'two-sided',
35-
'method': 'One sample Z-test'
35+
'method': 'One-sample Z-test'
3636
};
3737
res2json( res ); // $ExpectType Results
3838
}

lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/to-json/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* 'sd': 0.4563,
3737
* 'ci': new Float64Array( [ 9.9983, 11.4123 ] ),
3838
* 'alternative': 'two-sided',
39-
* 'method': 'One sample Z-test'
39+
* 'method': 'One-sample Z-test'
4040
* };
4141
*
4242
* var obj = res2json( results );

lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/to-json/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var typedarray2json = require( '@stdlib/array/to-json' );
4343
* 'sd': 0.4563,
4444
* 'ci': new Float64Array( [ 9.9983, 11.4123 ] ),
4545
* 'alternative': 'two-sided',
46-
* 'method': 'One sample Z-test'
46+
* 'method': 'One-sample Z-test'
4747
* };
4848
*
4949
* var obj = toJSON( results );

0 commit comments

Comments
 (0)