From e6780938672a1904518005fa5d2106a92f4e1276 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 29 May 2026 13:29:06 +0000 Subject: [PATCH 1/2] test: fix element annotations in `blas/ext/base/zapx` ndarray offset tests Propagates fix from 5d3c84a ("test: fix element annotations in ndarray offset tests") to `zapx`, which shared the same misaligned `// 0` and `// 1` annotations in the offset-parameter test block. With the call `zapx( 2, alpha, x, 1, 1 )`, the iteration visits complex indices 1 and 2 (flat float positions 2-3 and 4-5), so the `// 1` markers move from flat positions 6-7 onto positions 4-5 in both the input and expected complex arrays. --- .../blas/ext/base/zapx/test/test.ndarray.js | 14 +++++++------- .../blas/ext/base/zapx/test/test.ndarray.native.js | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.js index 8483e2f335e0..e443a3507266 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.js @@ -208,10 +208,10 @@ tape( 'the function supports an offset parameter', function test( t ) { -2.0, 3.0, // 0 -4.0, // 0 - 0.0, - 0.0, - 5.0, // 1 - 6.0, // 1 + 0.0, // 1 + 0.0, // 1 + 5.0, + 6.0, 0.0, 0.0, 0.0, @@ -222,10 +222,10 @@ tape( 'the function supports an offset parameter', function test( t ) { -2.0, 8.0, // 0 -9.0, // 0 - 5.0, - -5.0, 5.0, // 1 - 6.0, // 1 + -5.0, // 1 + 5.0, + 6.0, 0.0, 0.0, 0.0, diff --git a/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.native.js b/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.native.js index a9501c70d022..08f33ef7924d 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.native.js +++ b/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.native.js @@ -217,10 +217,10 @@ tape( 'the function supports an offset parameter', opts, function test( t ) { -2.0, 3.0, // 0 -4.0, // 0 - 0.0, - 0.0, - 5.0, // 1 - 6.0, // 1 + 0.0, // 1 + 0.0, // 1 + 5.0, + 6.0, 0.0, 0.0, 0.0, @@ -231,10 +231,10 @@ tape( 'the function supports an offset parameter', opts, function test( t ) { -2.0, 8.0, // 0 -9.0, // 0 - 5.0, - -5.0, 5.0, // 1 - 6.0, // 1 + -5.0, // 1 + 5.0, + 6.0, 0.0, 0.0, 0.0, From ad8962b4f089b2077954f4925c0548d5f53a1e3d Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 29 May 2026 13:29:12 +0000 Subject: [PATCH 2/2] docs: fix text wrapping in REPL text files Propagates fix from d69f7f9 ("docs: fix text wrapping in repl text file") to sibling REPL files whose prose paragraphs exceeded the 80-column width policy documented in docs/contributing/repl_text.md. Wraps the offending line in `utils/define-properties` while keeping `Default: undefined.` inline per the file's existing convention, and wraps the `normalize.assign` description in `number/float32/base/normalize` at the natural word boundary. --- .../@stdlib/number/float32/base/normalize/docs/repl.txt | 4 ++-- .../@stdlib/utils/define-properties/docs/repl.txt | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/number/float32/base/normalize/docs/repl.txt b/lib/node_modules/@stdlib/number/float32/base/normalize/docs/repl.txt index 64293208f7e9..61f405d75cd9 100644 --- a/lib/node_modules/@stdlib/number/float32/base/normalize/docs/repl.txt +++ b/lib/node_modules/@stdlib/number/float32/base/normalize/docs/repl.txt @@ -39,8 +39,8 @@ {{alias}}.assign( x, out, stride, offset ) - Returns a normal number `y` and exponent `exp` satisfying `x = y * 2^exp` and - assigns results to a provided output array. + Returns a normal number `y` and exponent `exp` satisfying `x = y * 2^exp` + and assigns results to a provided output array. The first element of the returned array corresponds to `y` and the second to `exp`. diff --git a/lib/node_modules/@stdlib/utils/define-properties/docs/repl.txt b/lib/node_modules/@stdlib/utils/define-properties/docs/repl.txt index bee36704b157..4fab1c46c7bb 100644 --- a/lib/node_modules/@stdlib/utils/define-properties/docs/repl.txt +++ b/lib/node_modules/@stdlib/utils/define-properties/docs/repl.txt @@ -34,7 +34,8 @@ - set: function which serves as a setter for the property, or, if no setter, undefined. When assigning a property value, a setter function is called with one argument (the value being assigned to the property) and with the `this` - context set to the object through which the property is assigned. Default: undefined. + context set to the object through which the property is + assigned. Default: undefined. Parameters ----------