Skip to content

Commit 1f53e33

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 59e4ee6 commit 1f53e33

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/ext/find-last-index/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
options: Object (optional)
2424
Function options.
2525

26-
options.dtype: string (optional)
26+
options.dtype: string|DataType (optional)
2727
Output array data type. Must be an integer index or "generic" data type.
2828

2929
options.dim: integer (optional)

lib/node_modules/@stdlib/blas/ext/find-last-index/lib/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var table = {
4949
* @param {ndarrayLike} x - input ndarray
5050
* @param {Options} [options] - function options
5151
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform operation
52-
* @param {string} [options.dtype] - output ndarray data type
52+
* @param {*} [options.dtype] - output ndarray data type
5353
* @param {Function} clbk - callback function
5454
* @param {*} [thisArg] - callback execution context
5555
* @throws {TypeError} first argument must be an ndarray-like object

lib/node_modules/@stdlib/blas/ext/find-last-index/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var base = require( './base.js' );
3838
* @param {Options} [options] - function options
3939
* @param {integer} [options.dim=-1] - dimension over which to perform operation
4040
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
41-
* @param {string} [options.dtype] - output ndarray data type
41+
* @param {*} [options.dtype] - output ndarray data type
4242
* @param {Function} clbk - callback function
4343
* @param {*} [thisArg] - callback execution context
4444
* @throws {TypeError} first argument must be an ndarray-like object

0 commit comments

Comments
 (0)