Skip to content

Commit 4399896

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: 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 5d2dca1 commit 4399896

File tree

2 files changed

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

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/ztest/alternative-str2enum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ limitations under the License.
4040
var str2enum = require( '@stdlib/stats/base/ztest/alternative-str2enum' );
4141
```
4242

43-
#### str2enum( diagonal )
43+
#### str2enum( alternative )
4444

4545
Returns the enumeration constant associated with a Z-test alternative hypothesis string.
4646

lib/node_modules/@stdlib/stats/strided/sztest/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ import sztest = require( './index' );
223223
sztest.ndarray( x.length, 'two-sided', 0.05, undefined, 1.0, x, 1, 0, new Float32Results() ); // $ExpectError
224224
sztest.ndarray( x.length, 'two-sided', 0.05, [], 1.0, x, 1, 0, new Float32Results() ); // $ExpectError
225225
sztest.ndarray( x.length, 'two-sided', 0.05, {}, 1.0, x, 1, 0, new Float32Results() ); // $ExpectError
226-
sztest.ndarray( x.length, 'two-sided', 0.05, ( x: number ): number => x, 1, 0.0, x, 1, 0, new Float32Results() ); // $ExpectError
226+
sztest.ndarray( x.length, 'two-sided', 0.05, ( x: number ): number => x, 1.0, x, 1, 0, new Float32Results() ); // $ExpectError
227227
}
228228

229229
// The compiler throws an error if the `ndarray` method is provided a fifth argument which is not a number...

0 commit comments

Comments
 (0)