Skip to content

Commit 6ca3c57

Browse files
committed
docs: fix copy
1 parent f200857 commit 6ca3c57

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/strided/base/write-dataview

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/strided/base/write-dataview/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ The function accepts the following arguments:
7070
- **x**: input strided array.
7171
- **strideX**: index increment for `x`.
7272
- **view**: output [`DataView`][@stdlib/array/dataview].
73-
- **strideView**: index increment (in bytes) for `y`.
73+
- **strideView**: index increment (in bytes) for `view`.
7474
- **littleEndian**: boolean indicating whether to store values in little-endian format.
7575

76-
The `N` and stride parameters determine which elements in `x` and `view` are accessed at runtime. For example, to index every other value in `x` and to index the first `N` elements of `y` in reverse order,
76+
The `N` and stride parameters determine which elements in `x` and `view` are accessed at runtime. For example, to index every other value in `x` and to index the first `N` elements of `view` in reverse order,
7777

7878
```javascript
7979
var ArrayBuffer = require( '@stdlib/array/buffer' );

0 commit comments

Comments
 (0)