From 6555bdaee7b4be0a4731489fc384ff125b351bc6 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 18 Aug 2026 00:27:49 +0000 Subject: [PATCH 1/3] docs: fix JSDoc summary for `blas/base/wasm/scasum` The `lib/main.js` JSDoc summary was missing the word "to" ("WebAssembly module compute ..."), diverging from the sibling convention "WebAssembly module to ..." present in 32 of 33 namespace packages (97% conformance) and from the package's own `lib/index.js` summary. Insert "to" to restore the pattern. The change is a grammar fix to a documentation comment and does not alter the described operation or any public behavior. --- lib/node_modules/@stdlib/blas/base/wasm/scasum/lib/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/base/wasm/scasum/lib/main.js b/lib/node_modules/@stdlib/blas/base/wasm/scasum/lib/main.js index 5c4c092d6fe9..5d7af888740c 100644 --- a/lib/node_modules/@stdlib/blas/base/wasm/scasum/lib/main.js +++ b/lib/node_modules/@stdlib/blas/base/wasm/scasum/lib/main.js @@ -28,7 +28,7 @@ var Module = require( './module.js' ); // MAIN // /** -* WebAssembly module compute the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point vector. +* WebAssembly module to compute the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point vector. * * @name scasum * @type {Routine} From 35167291b6c36cad26eecb6c4ace369604f3f326 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 18 Aug 2026 00:27:57 +0000 Subject: [PATCH 2/3] docs: hyphenate "floating-point" in `blas/base/wasm/dswap` The README referred to "double-precision floating point vectors" (unhyphenated) in all five occurrences, diverging from the hyphenated compound modifier "floating-point" used in 12 of 14 sibling READMEs that mention the term and in the package's own `lib/main.js` JSDoc. Hyphenate all occurrences to match the namespace convention. The change is documentation-only and does not affect public behavior. The same wording in `docs/repl.txt` and `docs/types/index.d.ts` is left untouched, as those files are out of scope for this change. --- .../@stdlib/blas/base/wasm/dswap/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/base/wasm/dswap/README.md b/lib/node_modules/@stdlib/blas/base/wasm/dswap/README.md index eb027b3c70a6..e0d7c8f6e300 100644 --- a/lib/node_modules/@stdlib/blas/base/wasm/dswap/README.md +++ b/lib/node_modules/@stdlib/blas/base/wasm/dswap/README.md @@ -20,7 +20,7 @@ limitations under the License. # dswap -> Interchange two double-precision floating point vectors. +> Interchange two double-precision floating-point vectors.
@@ -32,7 +32,7 @@ var dswap = require( '@stdlib/blas/base/wasm/dswap' ); #### dswap.main( N, x, strideX, y, strideY ) -Interchanges two double-precision floating point vectors. +Interchanges two double-precision floating-point vectors. ```javascript var Float64Array = require( '@stdlib/array/float64' ); @@ -86,7 +86,7 @@ dswap.main( 3, x1, -2, y1, 1 ); #### dswap.ndarray( N, x, strideX, offsetX, y, strideY, offsetY ) -Interchanges two double-precision floating point vectors using alternative indexing semantics. +Interchanges two double-precision floating-point vectors using alternative indexing semantics. ```javascript var Float64Array = require( '@stdlib/array/float64' ); @@ -146,7 +146,7 @@ mod.initializeSync(); #### dswap.Module.prototype.main( N, xp, sx, yp, sy ) -Interchanges two double-precision floating point vectors. +Interchanges two double-precision floating-point vectors. @@ -210,7 +210,7 @@ The function has the following parameters: #### dswap.Module.prototype.ndarray( N, xp, sx, ox, yp, sy, oy ) -Interchanges two double-precision floating point vectors using alternative indexing semantics. +Interchanges two double-precision floating-point vectors using alternative indexing semantics. From 213b9935daf911489a932537d29c0fefc33715a2 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 18 Aug 2026 00:27:58 +0000 Subject: [PATCH 3/3] docs: hyphenate "floating-point" in `blas/base/wasm/sswap` The README referred to "single-precision floating point vectors" (unhyphenated) in all five occurrences, diverging from the hyphenated compound modifier "floating-point" used in 12 of 14 sibling READMEs that mention the term and in the package's own `lib/main.js` JSDoc. Hyphenate all occurrences to match the namespace convention. The change is documentation-only and does not affect public behavior. The same wording in `docs/repl.txt` and `docs/types/index.d.ts` is left untouched, as those files are out of scope for this change. --- .../@stdlib/blas/base/wasm/sswap/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/base/wasm/sswap/README.md b/lib/node_modules/@stdlib/blas/base/wasm/sswap/README.md index 214b4383fc35..f19734783d1a 100644 --- a/lib/node_modules/@stdlib/blas/base/wasm/sswap/README.md +++ b/lib/node_modules/@stdlib/blas/base/wasm/sswap/README.md @@ -20,7 +20,7 @@ limitations under the License. # sswap -> Interchange two single-precision floating point vectors. +> Interchange two single-precision floating-point vectors.
@@ -32,7 +32,7 @@ var sswap = require( '@stdlib/blas/base/wasm/sswap' ); #### sswap.main( N, x, strideX, y, strideY ) -Interchanges two single-precision floating point vectors. +Interchanges two single-precision floating-point vectors. ```javascript var Float32Array = require( '@stdlib/array/float32' ); @@ -86,7 +86,7 @@ sswap.main( 3, x1, -2, y1, 1 ); #### sswap.ndarray( N, x, strideX, offsetX, y, strideY, offsetY ) -Interchanges two single-precision floating point vectors using alternative indexing semantics. +Interchanges two single-precision floating-point vectors using alternative indexing semantics. ```javascript var Float32Array = require( '@stdlib/array/float32' ); @@ -146,7 +146,7 @@ mod.initializeSync(); #### sswap.Module.prototype.main( N, xp, sx, yp, sy ) -Interchanges two single-precision floating point vectors. +Interchanges two single-precision floating-point vectors. @@ -210,7 +210,7 @@ The function has the following parameters: #### sswap.Module.prototype.ndarray( N, xp, sx, ox, yp, sy, oy ) -Interchanges two single-precision floating point vectors using alternative indexing semantics. +Interchanges two single-precision floating-point vectors using alternative indexing semantics.