Skip to content

Commit 1eb5a82

Browse files
committed
docs: document default values
--- 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 76883dd commit 1eb5a82

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var DEFAULT_DTYPE = defaults.get( 'dtypes.integer_index' );
4747
*
4848
* @param {ndarrayLike} x - input ndarray
4949
* @param {(ndarrayLike|*)} searchElement - search element
50-
* @param {(ndarrayLike|integer)} [fromIndex] - index from which to begin searching
50+
* @param {(ndarrayLike|integer)} [fromIndex=0] - index from which to begin searching
5151
* @param {ndarrayLike} out - output ndarray
5252
* @param {Options} [options] - function options
5353
* @param {integer} [options.dim=-1] - dimension over which to perform operation

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var DEFAULT_DTYPE = defaults.get( 'dtypes.integer_index' );
4747
*
4848
* @param {ndarrayLike} x - input ndarray
4949
* @param {(ndarrayLike|*)} searchElement - search element
50-
* @param {(ndarrayLike|integer)} [fromIndex] - index from which to begin searching
50+
* @param {(ndarrayLike|integer)} [fromIndex=0] - index from which to begin searching
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

0 commit comments

Comments
 (0)