Skip to content

Commit 1ca52a8

Browse files
committed
chore: address commit comments for commit (issue #11152)
--- 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: 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 364e294 commit 1ca52a8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/ndarray/base

lib/node_modules/@stdlib/ndarray/base/ones-like/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import onesLike = require( './index' );
4141
onesLike( ones( 'generic', sh, ord ) ); // $ExpectType genericndarray<number>
4242
}
4343

44-
// The compiler throws an error if the function is provided a first argument is not an ndarray which has a recognized/supported data type...
44+
// The compiler throws an error if the function is provided a first argument which is not an ndarray having a recognized/supported data type...
4545
{
4646
onesLike( '10' ); // $ExpectError
4747
onesLike( 10 ); // $ExpectError

lib/node_modules/@stdlib/ndarray/base/zeros-like/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import zerosLike = require( './index' );
4141
zerosLike( zeros( 'generic', sh, ord ) ); // $ExpectType genericndarray<number>
4242
}
4343

44-
// The compiler throws an error if the function is provided a first argument is not an ndarray which has a recognized/supported data type...
44+
// The compiler throws an error if the function is provided a first argument which is not an ndarray having a recognized/supported data type...
4545
{
4646
zerosLike( '10' ); // $ExpectError
4747
zerosLike( 10 ); // $ExpectError

0 commit comments

Comments
 (0)