Skip to content

Commit e762ecf

Browse files
committed
docs: fix signatures
--- 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: passed - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 2e0bd53 commit e762ecf

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/sindex-of

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/sindex-of/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ The function accepts the following arguments:
212212
- **strideX**: `[in] CBLAS_INT` stride length.
213213
214214
```c
215-
CBLAS_INT N stdlib_strided_sindex_of( const CBLAS_INT N, const float searchElement, float *X, const CBLAS_INT strideX );
215+
CBLAS_INT N stdlib_strided_sindex_of( const CBLAS_INT N, const float searchElement, const float *X, const CBLAS_INT strideX );
216216
```
217217

218218
#### stdlib_strided_sindex_of_ndarray( N, searchElement, \*X, strideX, offsetX )
@@ -235,7 +235,7 @@ The function accepts the following arguments:
235235
- **offsetX**: `[in] CBLAS_INT` starting index.
236236
237237
```c
238-
CBLAS_INT stdlib_strided_sindex_of_ndarray( const CBLAS_INT N, const float searchElement, float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX );
238+
CBLAS_INT stdlib_strided_sindex_of_ndarray( const CBLAS_INT N, const float searchElement, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX );
239239
```
240240

241241
</section>

0 commit comments

Comments
 (0)