Skip to content

Commit ac78d4f

Browse files
committed
docs: update type
--- 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: 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent ddbd40d commit ac78d4f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/ext/cusum/lib/assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var base = require( './base.js' ).assign;
4343
* @param {(ndarrayLike|number|ComplexLike)} [initial] - initial value
4444
* @param {ndarrayLike} out - output ndarray
4545
* @param {Options} [options] - function options
46-
* @param {string} [options.dtype] - output ndarray data type
46+
* @param {*} [options.dtype] - output ndarray data type
4747
* @throws {TypeError} first argument must be an ndarray-like object
4848
* @throws {TypeError} initial value argument must be either an ndarray-like object or a numeric value
4949
* @throws {TypeError} output argument must be an ndarray-like object

lib/node_modules/@stdlib/blas/ext/cusum/lib/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ var options = {
6868
* @param {ndarray} initial - ndarray containing initial values
6969
* @param {Options} [options] - function options
7070
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform operation
71-
* @param {string} [options.dtype] - output ndarray data type
71+
* @param {*} [options.dtype] - output ndarray data type
7272
* @throws {TypeError} first argument must be an ndarray-like object
7373
* @throws {TypeError} second argument must be an ndarray-like object
7474
* @throws {TypeError} options argument must be an object

lib/node_modules/@stdlib/blas/ext/cusum/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var base = require( './base.js' );
4343
* @param {(ndarrayLike|number|ComplexLike)} [initial] - initial value
4444
* @param {Options} [options] - function options
4545
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform operation
46-
* @param {string} [options.dtype] - output ndarray data type
46+
* @param {*} [options.dtype] - output ndarray data type
4747
* @throws {TypeError} first argument must be an ndarray-like object
4848
* @throws {TypeError} initial value argument must be either an ndarray-like object or a numeric value
4949
* @throws {TypeError} options argument must be an object

0 commit comments

Comments
 (0)