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. 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} 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.