Skip to content

Commit 4e57266

Browse files
committed
fix: apply code review suggestion
1 parent 446ebc3 commit 4e57266

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The function has the following parameters:
5353

5454
- **N**: number of indexed elements.
5555
- **x**: input [`Float64Array`][@stdlib/array/float64].
56-
- **strideX**: index increment for `x`.
56+
- **strideX**: stride length for `x`.
5757

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

@@ -193,7 +193,7 @@ The function accepts the following arguments:
193193
194194
- **N**: `[in] CBLAS_INT` number of indexed elements.
195195
- **X**: `[in] double*` input array.
196-
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
196+
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
197197
198198
```c
199199
double stdlib_strided_dnansumkbn2( const CBLAS_INT N, const double *X, const CBLAS_INT strideX );
@@ -214,7 +214,7 @@ The function accepts the following arguments:
214214
215215
- **N**: `[in] CBLAS_INT` number of indexed elements.
216216
- **X**: `[in] double*` input array.
217-
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
217+
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
218218
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
219219
220220
```c

lib/node_modules/@stdlib/blas/ext/base/dnansumkbn2/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Input array.
2222

2323
strideX: integer
24-
Index increment.
24+
Stride length.
2525

2626
Returns
2727
-------
@@ -65,7 +65,7 @@
6565
Input array.
6666

6767
strideX: integer
68-
Index increment.
68+
Stride length.
6969

7070
offsetX: integer
7171
Starting index.

lib/node_modules/@stdlib/blas/ext/base/dnansumkbn2/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var abs = require( '@stdlib/math/base/special/abs' );
3939
*
4040
* @param {PositiveInteger} N - number of indexed elements
4141
* @param {Float64Array} x - input array
42-
* @param {integer} strideX - index increment
42+
* @param {integer} strideX - stride length
4343
* @param {NonNegativeInteger} offsetX - starting index
4444
* @returns {number} sum
4545
*

lib/node_modules/@stdlib/blas/ext/base/dnansumkbn2/lib/ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var addon = require( './../src/addon.node' );
3030
*
3131
* @param {PositiveInteger} N - number of indexed elements
3232
* @param {Float64Array} x - input array
33-
* @param {integer} strideX - index increment
33+
* @param {integer} strideX - stride length
3434
* @param {NonNegativeInteger} offsetX - starting index
3535
* @returns {number} sum
3636
*

lib/node_modules/@stdlib/blas/ext/base/dnansumkbn2/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ double API_SUFFIX(stdlib_strided_dnansumkbn2)( const CBLAS_INT N, const double *
5656
*
5757
* @param N number of indexed elements
5858
* @param X input array
59-
* @param strideX index increment
59+
* @param strideX stride length
6060
* @param offsetX starting index
6161
* @return output value
6262
*/

0 commit comments

Comments
 (0)