Skip to content

Commit 9e35394

Browse files
committed
fix: apply code review suggesetion
1 parent 600aecb commit 9e35394

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/blas/ext/base/dnansumkbn/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_dnansumkbn( 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/dnansumkbn/docs/repl.txt

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

2222
strideX: integer
23-
Index increment.
23+
Stride length.
2424

2525
Returns
2626
-------
@@ -64,7 +64,7 @@
6464
Input array.
6565

6666
strideX: integer
67-
Index increment.
67+
Stride length.
6868

6969
offsetX: integer
7070
Starting index.

lib/node_modules/@stdlib/blas/ext/base/dnansumkbn/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/dnansumkbn/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/dnansumkbn/src/main.c

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

0 commit comments

Comments
 (0)