From 221311be62452e38f0716ced0a80e5f859b6b3e4 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 4 May 2026 12:24:30 +0000 Subject: [PATCH 1/2] docs: align `cswap`/`zswap` namespace descriptions with sibling entries Match the "single/double-precision complex" word order used by the adjacent `caxpy`/`ccopy`/`zaxpy`/`zcopy` entries in the same ToC and TypeScript declarations. --- lib/node_modules/@stdlib/blas/base/ndarray/README.md | 4 ++-- .../@stdlib/blas/base/ndarray/docs/types/index.d.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/README.md b/lib/node_modules/@stdlib/blas/base/ndarray/README.md index 44d8438a1125..0d0dde630b86 100644 --- a/lib/node_modules/@stdlib/blas/base/ndarray/README.md +++ b/lib/node_modules/@stdlib/blas/base/ndarray/README.md @@ -47,7 +47,7 @@ The namespace exposes the following APIs: - [`caxpy( arrays )`][@stdlib/blas/base/ndarray/caxpy]: multiply a one-dimensional single-precision complex floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional single-precision complex floating-point ndarray `y`. - [`ccopy( arrays )`][@stdlib/blas/base/ndarray/ccopy]: copy values from a one-dimensional single-precision complex floating-point ndarray `x` into a one-dimensional single-precision complex floating-point ndarray `y`. -- [`cswap( arrays )`][@stdlib/blas/base/ndarray/cswap]: interchange two one-dimensional complex single-precision floating-point ndarrays. +- [`cswap( arrays )`][@stdlib/blas/base/ndarray/cswap]: interchange two one-dimensional single-precision complex floating-point ndarrays. - [`dasum( arrays )`][@stdlib/blas/base/ndarray/dasum]: calculate the sum of absolute values for all elements in a one-dimensional double-precision floating-point ndarray. - [`daxpy( arrays )`][@stdlib/blas/base/ndarray/daxpy]: multiply a one-dimensional double-precision floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional double-precision floating-point ndarray `y`. - [`dcopy( arrays )`][@stdlib/blas/base/ndarray/dcopy]: copy values from a one-dimensional double-precision floating-point ndarray `x` into a one-dimensional double-precision floating-point ndarray `y`. @@ -65,7 +65,7 @@ The namespace exposes the following APIs: - [`sswap( arrays )`][@stdlib/blas/base/ndarray/sswap]: interchange two one-dimensional single-precision floating-point ndarrays. - [`zaxpy( arrays )`][@stdlib/blas/base/ndarray/zaxpy]: multiply a one-dimensional double-precision complex floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional double-precision complex floating-point ndarray `y`. - [`zcopy( arrays )`][@stdlib/blas/base/ndarray/zcopy]: copy values from a one-dimensional double-precision complex floating-point ndarray `x` into a one-dimensional double-precision complex floating-point ndarray `y`. -- [`zswap( arrays )`][@stdlib/blas/base/ndarray/zswap]: interchange two one-dimensional complex double-precision floating-point ndarrays. +- [`zswap( arrays )`][@stdlib/blas/base/ndarray/zswap]: interchange two one-dimensional double-precision complex floating-point ndarrays. diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/base/ndarray/docs/types/index.d.ts index 1147f0631451..b18ef1fd4161 100644 --- a/lib/node_modules/@stdlib/blas/base/ndarray/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/base/ndarray/docs/types/index.d.ts @@ -108,7 +108,7 @@ interface Namespace { ccopy: typeof ccopy; /** - * Interchanges two one-dimensional complex single-precision floating-point ndarrays. + * Interchanges two one-dimensional single-precision complex floating-point ndarrays. * * ## Notes * @@ -599,7 +599,7 @@ interface Namespace { zcopy: typeof zcopy; /** - * Interchanges two one-dimensional complex double-precision floating-point ndarrays. + * Interchanges two one-dimensional double-precision complex floating-point ndarrays. * * ## Notes * From d9ce9f3e1c5d6d0ea5f7a9f35f0ebd5f1efc2c3d Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 4 May 2026 12:24:34 +0000 Subject: [PATCH 2/2] style: use single quotes in `blas/ext/base/dcartesian-power` JSDoc requires Replace backtick-quoted `require()` strings in the TypeScript declarations with single-quoted strings to match the rest of stdlib's TypeScript declaration files. --- .../blas/ext/base/dcartesian-power/docs/types/index.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/dcartesian-power/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/dcartesian-power/docs/types/index.d.ts index f17171ae03e9..e1f724aecb78 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dcartesian-power/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/dcartesian-power/docs/types/index.d.ts @@ -43,7 +43,7 @@ interface Routine { * @returns output array * * @example - * var Float64Array = require( `@stdlib/array/float64` ); + * var Float64Array = require( '@stdlib/array/float64' ); * * var x = new Float64Array( [ 1.0, 2.0 ] ); * var out = new Float64Array( 8 ); @@ -72,7 +72,7 @@ interface Routine { * @returns output array * * @example - * var Float64Array = require( `@stdlib/array/float64` ); + * var Float64Array = require( '@stdlib/array/float64' ); * * var x = new Float64Array( [ 1.0, 2.0 ] ); * var out = new Float64Array( 8 ); @@ -96,7 +96,7 @@ interface Routine { * @returns output array * * @example -* var Float64Array = require( `@stdlib/array/float64` ); +* var Float64Array = require( '@stdlib/array/float64' ); * * var x = new Float64Array( [ 1.0, 2.0 ] ); * var out = new Float64Array( 8 ); @@ -105,7 +105,7 @@ interface Routine { * // out => [ 1.0, 1.0, 1.0, 2.0, 2.0, 1.0, 2.0, 2.0 ] * * @example -* var Float64Array = require( `@stdlib/array/float64` ); +* var Float64Array = require( '@stdlib/array/float64' ); * * var x = new Float64Array( [ 1.0, 2.0 ] ); * var out = new Float64Array( 8 );