Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Athan <kgryte@gmail.com>
  • Loading branch information
kgryte authored Apr 3, 2024
1 parent 72f576b commit ec4a30f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/zswap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ The function has the following additional parameters:
- **offsetX**: starting index for `x`.
- **offsetY**: starting index for `y`.

While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to interchange every other value in `x` starting from the second value into the last `N` elements in `y` where `x[ i ] = y[ n ]`, `x[ i+2 ] = y[ n-1 ]`, and so on.
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to interchange every other value in `x` starting from the second value into the last `N` elements in `y` where `x[i] = y[n]`, `x[i+2] = y[n-1]`, and so on,

```javascript
var Complex128Array = require( '@stdlib/array/complex128' );
Expand Down

0 comments on commit ec4a30f

Please sign in to comment.