Skip to content

Commit 3e48fcc

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: passed - 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 4d84e34 commit 3e48fcc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/special/abs/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
options: Object (optional)
1313
Options.
1414

15-
options.dtype: string (optional)
15+
options.dtype: string|DataType (optional)
1616
Output array data type. Must be a real-valued or "generic" data type.
1717

1818
options.order: string (optional)

lib/node_modules/@stdlib/math/special/abs/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var config = require( './config.js' );
4141
* @param {ndarray} x - input ndarray
4242
* @param {Options} [options] - options
4343
* @param {string} [options.order] - output array order
44-
* @param {string} [options.dtype] - output array dtype
44+
* @param {*} [options.dtype] - output array dtype
4545
* @throws {TypeError} first argument must be an ndarray-like object
4646
* @throws {TypeError} options argument must be an object
4747
* @throws {TypeError} must provide valid options

lib/node_modules/@stdlib/math/special/abs/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var fallback = require( './main.js' ).assign;
4141
* @param {ndarray} x - input ndarray
4242
* @param {Options} [options] - options
4343
* @param {string} [options.order] - output array order
44-
* @param {string} [options.dtype] - output array dtype
44+
* @param {*} [options.dtype] - output array dtype
4545
* @throws {TypeError} first argument must be an ndarray-like object
4646
* @throws {TypeError} options argument must be an object
4747
* @throws {TypeError} must provide valid options

0 commit comments

Comments
 (0)