From 7bffb57a73100d33333d324c7c2f58df27c229e3 Mon Sep 17 00:00:00 2001 From: Athan Date: Wed, 2 Oct 2024 13:50:15 -0700 Subject: [PATCH 1/2] Apply suggestions from code review Signed-off-by: Athan --- lib/node_modules/@stdlib/blas/ext/base/dcusumpw/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/dcusumpw/README.md b/lib/node_modules/@stdlib/blas/ext/base/dcusumpw/README.md index 93cf2aa536b..c5f2098bd11 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dcusumpw/README.md +++ b/lib/node_modules/@stdlib/blas/ext/base/dcusumpw/README.md @@ -115,7 +115,7 @@ The function has the following additional parameters: - **offsetX**: starting index for `x`. - **offsetY**: starting index for `y`. -While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying offset parameters support indexing semantics based on starting indices. For example, to calculate the cumulative sum of every other value in the strided input array starting from the second value and to store in the last `N` elements of the strided output array starting from the last element +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 calculate the cumulative sum of every other value in the strided input array starting from the second value and to store in the last `N` elements of the strided output array starting from the last element ```javascript var Float64Array = require( '@stdlib/array/float64' ); From 726ce043503e6f415a3b3236e4a0895f63a187f2 Mon Sep 17 00:00:00 2001 From: Athan Date: Wed, 2 Oct 2024 13:53:30 -0700 Subject: [PATCH 2/2] Apply suggestions from code review Signed-off-by: Athan --- lib/node_modules/@stdlib/blas/ext/base/dcusumpw/docs/repl.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/dcusumpw/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/dcusumpw/docs/repl.txt index adc2bbb9249..fef83956712 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dcusumpw/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/base/dcusumpw/docs/repl.txt @@ -66,8 +66,8 @@ elements using pairwise summation and alternative indexing semantics. While typed array views mandate a view offset based on the underlying - buffer, the offset parameter supports indexing semantics based on starting - index. + buffer, offset parameters support indexing semantics based on starting + indices. Parameters ----------