From 5e3c26aa042cf42b0d69990c62c3d0d28a7db050 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 21 May 2026 13:21:56 +0000 Subject: [PATCH] docs: fix offset parameter wording in `blas/ext/base` sort2 READMEs Propagates the fix from 618583c83 ("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: 618583c836de8dbcc90cdc5a547287944a67882e --- lib/node_modules/@stdlib/blas/ext/base/dsort2ins/README.md | 2 +- lib/node_modules/@stdlib/blas/ext/base/ssort2hp/README.md | 2 +- lib/node_modules/@stdlib/blas/ext/base/ssort2sh/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/dsort2ins/README.md b/lib/node_modules/@stdlib/blas/ext/base/dsort2ins/README.md index 43385ef23133..1964569b85ad 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dsort2ins/README.md +++ b/lib/node_modules/@stdlib/blas/ext/base/dsort2ins/README.md @@ -122,7 +122,7 @@ The function has the following additional parameters: - **offsetX**: `x` starting index. - **offsetY**: `y` starting index. -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` +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` ```javascript var Float64Array = require( '@stdlib/array/float64' ); diff --git a/lib/node_modules/@stdlib/blas/ext/base/ssort2hp/README.md b/lib/node_modules/@stdlib/blas/ext/base/ssort2hp/README.md index af9e422f3c61..5647a75c041c 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ssort2hp/README.md +++ b/lib/node_modules/@stdlib/blas/ext/base/ssort2hp/README.md @@ -122,7 +122,7 @@ The function has the following additional parameters: - **offsetX**: `x` starting index. - **offsetY**: `y` starting index. -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` +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` ```javascript var Float32Array = require( '@stdlib/array/float32' ); diff --git a/lib/node_modules/@stdlib/blas/ext/base/ssort2sh/README.md b/lib/node_modules/@stdlib/blas/ext/base/ssort2sh/README.md index 0cd09a49dd48..5b8f9613a4e4 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ssort2sh/README.md +++ b/lib/node_modules/@stdlib/blas/ext/base/ssort2sh/README.md @@ -122,7 +122,7 @@ The function has the following additional parameters: - **offsetX**: `x` starting index. - **offsetY**: `y` starting index. -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` +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` ```javascript var Float32Array = require( '@stdlib/array/float32' );