Skip to content

Commit fbc6b85

Browse files
committed
docs: fix comments
--- 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: na - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent 5471fc4 commit fbc6b85

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/vector/ctor/docs/types

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/vector/ctor/docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ import vector = require( './index' );
6161
vector( new ArrayBuffer( 10 ), 8, 0, 'float32', {} ); // $ExpectType float32ndarray
6262
}
6363

64-
// The compiler throws an error if the function is provided a first argument which is not a data type, number, array-like object, iterable, or options objects...
64+
// The compiler throws an error if the function is provided a first argument which is not a data type, number, array-like object, iterable, or options object...
6565
{
6666
vector( true ); // $ExpectError
6767
vector( false ); // $ExpectError
@@ -135,7 +135,7 @@ import vector = require( './index' );
135135
f3( [ 1, 2, 3 ], {} ); // $ExpectType genericndarray<number>
136136
}
137137

138-
// The compiler throws an error if the function returned by the `factory` method is provided a first argument which is not a data type, number, array-like object, iterable, or options objects...
138+
// The compiler throws an error if the function returned by the `factory` method is provided a first argument which is not a data type, number, array-like object, iterable, or options object...
139139
{
140140
const f = vector.factory( 'float64' );
141141

0 commit comments

Comments
 (0)