From 6ad77ae7929161e2d4d795c322781652e223cd13 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 22 May 2026 13:13:16 +0000 Subject: [PATCH] docs: fix offset parameter wording in multi-offset READMEs Propagates the offset parameter wording fix from 8441545518 ("docs: fix offset parameter wording in blas/ext/base/*sort2* READMEs") to sibling README files for strided functions that expose multiple distinct offset parameters. Each affected function documents two offset parameters, so the prose now uses plural phrasing ("offset parameters support indexing semantics based on starting indices") consistent with already-corrected siblings. Ref: https://github.com/stdlib-js/stdlib/commit/8441545518bc1d000fcd81a6ab91548f56eafaa6 --- lib/node_modules/@stdlib/blas/ext/base/dsort2hp/README.md | 2 +- lib/node_modules/@stdlib/blas/ext/base/dsort2sh/README.md | 2 +- lib/node_modules/@stdlib/stats/strided/dmeanvarpn/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/dsort2hp/README.md b/lib/node_modules/@stdlib/blas/ext/base/dsort2hp/README.md index 11740f4e8611..785e8836c31c 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dsort2hp/README.md +++ b/lib/node_modules/@stdlib/blas/ext/base/dsort2hp/README.md @@ -126,7 +126,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/dsort2sh/README.md b/lib/node_modules/@stdlib/blas/ext/base/dsort2sh/README.md index 7594cda0311c..f7fa2bb5ad19 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dsort2sh/README.md +++ b/lib/node_modules/@stdlib/blas/ext/base/dsort2sh/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/stats/strided/dmeanvarpn/README.md b/lib/node_modules/@stdlib/stats/strided/dmeanvarpn/README.md index 676f1d46c23f..ffbcdb40e22e 100644 --- a/lib/node_modules/@stdlib/stats/strided/dmeanvarpn/README.md +++ b/lib/node_modules/@stdlib/stats/strided/dmeanvarpn/README.md @@ -174,7 +174,7 @@ The function has the following additional parameters: - **offsetX**: starting index for `x`. - **offsetOut**: starting index for `out`. -While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on a starting index. For example, to calculate the [mean][arithmetic-mean] and [variance][variance] for every other element in `x` starting from the second element +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 calculate the [mean][arithmetic-mean] and [variance][variance] for every other element in `x` starting from the second element ```javascript var Float64Array = require( '@stdlib/array/float64' );