Skip to content

Commit 0c7ccf4

Browse files
committed
docs: fix descriptions
--- 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: na - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 2f8447b commit 0c7ccf4

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/blas/ext/index-of/docs/types

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/blas/ext/index-of/docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ interface Options extends BaseOptions {
7474
*/
7575
interface IndexOf {
7676
/**
77-
* Returns the first index of specified search element along one or more ndarray dimensions.
77+
* Returns the first index of a specified search element along an ndarray dimension.
7878
*
7979
* @param x - input ndarray
8080
* @param searchElement - search element
@@ -95,7 +95,7 @@ interface IndexOf {
9595
<T = unknown>( x: InputArray<T>, searchElement: SearchElement<T>, options?: Options ): OutputArray;
9696

9797
/**
98-
* Returns the first index of specified search element along one or more ndarray dimensions.
98+
* Returns the first index of a specified search element along an ndarray dimension.
9999
*
100100
* @param x - input ndarray
101101
* @param searchElement - search element
@@ -117,7 +117,7 @@ interface IndexOf {
117117
<T = unknown>( x: InputArray<T>, searchElement: SearchElement<T>, fromIndex: FromIndex, options?: Options ): OutputArray;
118118

119119
/**
120-
* Returns the first index of a specified search element along one or more ndarray dimensions and assigns results to a provided output ndarray.
120+
* Returns the first index of a specified search element along an ndarray dimension and assigns results to a provided output ndarray.
121121
*
122122
* @param x - input ndarray
123123
* @param searchElement - search element
@@ -146,7 +146,7 @@ interface IndexOf {
146146
assign<T = unknown, U extends OutputArray = OutputArray>( x: InputArray<T>, searchElement: SearchElement<T>, out: U, options?: BaseOptions ): U;
147147

148148
/**
149-
* Returns the first index of a specified search element along one or more ndarray dimensions and assigns results to a provided output ndarray.
149+
* Returns the first index of a specified search element along an ndarray dimension and assigns results to a provided output ndarray.
150150
*
151151
* @param x - input ndarray
152152
* @param searchElement - search element
@@ -177,7 +177,7 @@ interface IndexOf {
177177
}
178178

179179
/**
180-
* Returns the first index of a specified search element along one or more ndarray dimensions.
180+
* Returns the first index of a specified search element along an ndarray dimension.
181181
*
182182
* @param x - input ndarray
183183
* @param searchElement - search element

0 commit comments

Comments
 (0)