Skip to content

Commit

Permalink
fix: apply code review suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
headlessNode committed Oct 20, 2024
1 parent 3ce210b commit c67639c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
Input array.

strideX: integer
Index increment for `x`.
Stride length for `x`.

out: Float64Array
Output array.

strideOut: integer
Index increment for `out`.
Stride length for `out`.

Returns
-------
Expand Down Expand Up @@ -76,7 +76,7 @@
Input array.

strideX: integer
Index increment for `x`.
Stride length for `x`.

offsetX: integer
Starting index for `x`.
Expand All @@ -85,7 +85,7 @@
Output array.

strideOut: integer
Index increment for `out`.
Stride length for `out`.

offsetOut: integer
Starting index for `out`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
*
* @param {PositiveInteger} N - number of indexed elements
* @param {Float64Array} x - input array
* @param {integer} strideX - `x` index increment
* @param {integer} strideX - `x` stride length
* @param {NonNegativeInteger} offsetX - `x` starting index
* @param {Float64Array} out - output array
* @param {integer} strideOut - `out` index increment
* @param {integer} strideOut - `out` stride length
* @param {NonNegativeInteger} offsetOut - `out` starting index
* @returns {Float64Array} output array
*
Expand Down

0 comments on commit c67639c

Please sign in to comment.