Skip to content

Commit 0a5260e

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 966aadc commit 0a5260e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
options: Object (optional)
3939
Function options.
4040

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

4444
options.dim: integer (optional)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ var table = {
6565
* @param {ndarrayLike} fromIndex - indices from which to begin searching
6666
* @param {Options} [options] - function options
6767
* @param {IntegerArray} [options.dims] - list of dimensions over which to perform operation
68-
* @param {string} [options.dtype] - output ndarray data type
68+
* @param {*} [options.dtype] - output ndarray data type
6969
* @throws {TypeError} first argument must be an ndarray-like object
7070
* @throws {TypeError} second argument must be either an ndarray-like object
7171
* @throws {TypeError} third argument must be either an ndarray-like object

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var DEFAULT_DTYPE = defaults.get( 'dtypes.integer_index' );
5151
* @param {Options} [options] - function options
5252
* @param {integer} [options.dim=-1] - dimension over which to perform operation
5353
* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
54-
* @param {string} [options.dtype] - output ndarray data type
54+
* @param {*} [options.dtype] - output ndarray data type
5555
* @throws {TypeError} first argument must be an ndarray-like object
5656
* @throws {TypeError} second argument must be either an ndarray-like object or a scalar value
5757
* @throws {TypeError} third argument must be either an ndarray-like object or an integer

0 commit comments

Comments
 (0)