Skip to content

Commit 0a437aa

Browse files
committed
chore: remove usage of unsupported option
See: https://github.com/stdlib-js/stdlib/blob/a42b9b921e8338cb4fd73198c742950726c1775c/lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/factory/lib/main.js#L334-L371 --- 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: passed - 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 e93f047 commit 0a437aa

12 files changed

Lines changed: 12 additions & 20 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
--------
1717
> var R = {{alias}}( 'float64' );
1818
> var r = new R();
19-
> r.toString( { 'format': 'linear' } )
19+
> r.toString()
2020
<string>
2121

2222
See Also

lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/float32/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,9 +282,7 @@ var results = new Results({
282282
'alternative': 'two-sided'
283283
});
284284

285-
var str = results.toString({
286-
'format': 'linear'
287-
});
285+
var str = results.toString();
288286
console.log( str );
289287
```
290288

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Examples
2222
--------
2323
> var r = new {{alias}}();
24-
> r.toString( { 'format': 'linear' } )
24+
> r.toString()
2525
<string>
2626

2727
See Also

lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/float32/examples/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,5 @@ var results = new Results({
3232
'alternative': 'two-sided'
3333
});
3434

35-
var str = results.toString({
36-
'format': 'linear'
37-
});
35+
var str = results.toString();
3836
console.log( str );

lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/float64/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,9 +282,7 @@ var results = new Results({
282282
'alternative': 'two-sided'
283283
});
284284

285-
var str = results.toString({
286-
'format': 'linear'
287-
});
285+
var str = results.toString();
288286
console.log( str );
289287
```
290288

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Examples
2222
--------
2323
> var r = new {{alias}}();
24-
> r.toString( { 'format': 'linear' } )
24+
> r.toString()
2525
<string>
2626

2727
See Also

lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/float64/examples/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,5 @@ var results = new Results({
3232
'alternative': 'two-sided'
3333
});
3434

35-
var str = results.toString({
36-
'format': 'linear'
37-
});
35+
var str = results.toString();
3836
console.log( str );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
--------
1818
> var S = {{alias}}( 'float64' );
1919
> var r = new S();
20-
> r.toString( { 'format': 'linear' } )
20+
> r.toString()
2121
<string>
2222

2323
See Also

lib/node_modules/@stdlib/stats/base/ztest/two-sample/results/factory/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
--------
1717
> var R = {{alias}}( 'float64' );
1818
> var r = new R();
19-
> r.toString( { 'format': 'linear' } )
19+
> r.toString()
2020
<string>
2121

2222
See Also

lib/node_modules/@stdlib/stats/base/ztest/two-sample/results/float32/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Examples
2222
--------
2323
> var r = new {{alias}}();
24-
> r.toString( { 'format': 'linear' } )
24+
> r.toString()
2525
<string>
2626

2727
See Also

0 commit comments

Comments
 (0)