Skip to content

Commit 5e3c26a

Browse files
committed
docs: fix offset parameter wording in blas/ext/base sort2 READMEs
Propagates the fix from 618583c ("docs: update copy") to sibling sort2 packages whose READMEs describe multiple offset parameters using singular phrasing. The dsort2ins, ssort2hp, and ssort2sh packages each document two offset parameters (offsetX and offsetY) but referred to "the offset parameter" in the singular; the wording is corrected to the plural form already used by sibling packages. Ref: 618583c
1 parent e1dd43f commit 5e3c26a

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)