Skip to content

Commit 8441545

Browse files
authored
docs: fix offset parameter wording in blas/ext/base/*sort2* READMEs
PR-URL: #12229 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent dc7c32d commit 8441545

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The function has the following additional parameters:
122122
- **offsetX**: `x` starting index.
123123
- **offsetY**: `y` starting index.
124124

125-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the offset parameter supports indexing semantics based on a starting index. For example, to access only the last three elements of `x`
125+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, offset parameters support indexing semantics based on starting indices. For example, to access only the last three elements of `x`
126126

127127
```javascript
128128
var Float64Array = require( '@stdlib/array/float64' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The function has the following additional parameters:
122122
- **offsetX**: `x` starting index.
123123
- **offsetY**: `y` starting index.
124124

125-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the offset parameter supports indexing semantics based on a starting index. For example, to access only the last three elements of `x`
125+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, offset parameters support indexing semantics based on starting indices. For example, to access only the last three elements of `x`
126126

127127
```javascript
128128
var Float32Array = require( '@stdlib/array/float32' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The function has the following additional parameters:
122122
- **offsetX**: `x` starting index.
123123
- **offsetY**: `y` starting index.
124124

125-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the offset parameter supports indexing semantics based on a starting index. For example, to access only the last three elements of `x`
125+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, offset parameters support indexing semantics based on starting indices. For example, to access only the last three elements of `x`
126126

127127
```javascript
128128
var Float32Array = require( '@stdlib/array/float32' );

0 commit comments

Comments
 (0)