Skip to content

Commit 3ce210b

Browse files
committed
fix: apply code review suggestions
1 parent 2a373f6 commit 3ce210b

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/dnannsumors

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/ext/base/dnannsumors/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ The function has the following parameters:
5454

5555
- **N**: number of indexed elements.
5656
- **x**: input [`Float64Array`][@stdlib/array/float64].
57-
- **strideX**: index increment for `x`.
57+
- **strideX**: stride length for `x`.
5858
- **out**: output [`Float64Array`][@stdlib/array/float64] whose first element is the sum and whose second element is the number of non-NaN elements.
59-
- **strideOut**: index increment for `out`.
59+
- **strideOut**: stride length for `out`.
6060

6161
The `N` and stride parameters determine which elements are accessed at runtime. For example, to compute the sum of every other element in `x`,
6262

@@ -208,7 +208,7 @@ The function accepts the following arguments:
208208
209209
- **N**: `[in] CBLAS_INT` number of indexed elements.
210210
- **X**: `[in] double*` input array.
211-
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
211+
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
212212
- **n**: `[out] CBLAS_INT*` number of non-NaN elements.
213213
214214
```c
@@ -231,7 +231,7 @@ The function accepts the following arguments:
231231
232232
- **N**: `[in] CBLAS_INT` number of indexed elements.
233233
- **X**: `[in] double*` input array.
234-
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
234+
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
235235
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
236236
- **n**: `[out] CBLAS_INT*` number of non-NaN elements.
237237

0 commit comments

Comments
 (0)