From 72f24a842a58455c4adac2d18e48a1ad1236640b Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 14 May 2026 12:26:34 +0000 Subject: [PATCH 1/2] docs: correct return-condition wording in `blas/ext/base/cindex-of-column` Replace `unable to find a search vector` with `unable to find a matching column` in the JSDoc and TypeScript declarations to match the README and the wording used by the analogous `dindex-of-column` package. --- .../blas/ext/base/cindex-of-column/docs/types/index.d.ts | 6 +++--- .../blas/ext/base/cindex-of-column/lib/cindex_of_column.js | 2 +- .../@stdlib/blas/ext/base/cindex-of-column/lib/ndarray.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/docs/types/index.d.ts index 34d53bc7903a..4980a1c57725 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/docs/types/index.d.ts @@ -32,7 +32,7 @@ interface Routine { * * ## Notes * - * - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). + * - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index). * - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored. * * @param order - storage layout @@ -64,7 +64,7 @@ interface Routine { * * ## Notes * - * - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). + * - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index). * - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored. * * @param M - number of rows in `A` @@ -100,7 +100,7 @@ interface Routine { * * ## Notes * -* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). +* - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index). * - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored. * * @param order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/lib/cindex_of_column.js b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/lib/cindex_of_column.js index c5cc65928433..1dcdba459234 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/lib/cindex_of_column.js +++ b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/lib/cindex_of_column.js @@ -36,7 +36,7 @@ var ndarray = require( './ndarray.js' ); * * ## Notes * -* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). +* - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index). * - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored. * * @param {string} order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/lib/ndarray.js index b55728291d6c..b8e51056bf21 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-column/lib/ndarray.js @@ -33,7 +33,7 @@ var reinterpret = require( '@stdlib/strided/base/reinterpret-complex64' ); * * ## Notes * -* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). +* - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index). * - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored. * * @param {PositiveInteger} M - number of rows in `A` From acae714b0abb39e8c4589c66c8233b18edceaa44 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 14 May 2026 12:27:15 +0000 Subject: [PATCH 2/2] docs: correct return-condition wording in `blas/ext/base/zindex-of-column` Replace `unable to find a search vector` with `unable to find a matching column` in the JSDoc and TypeScript declarations to match the README and the wording used by the analogous `dindex-of-column` package. --- .../blas/ext/base/zindex-of-column/docs/types/index.d.ts | 6 +++--- .../@stdlib/blas/ext/base/zindex-of-column/lib/ndarray.js | 2 +- .../blas/ext/base/zindex-of-column/lib/zindex_of_column.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/docs/types/index.d.ts index cf61ff4f66c6..81504bf6fb8d 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/docs/types/index.d.ts @@ -32,7 +32,7 @@ interface Routine { * * ## Notes * - * - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). + * - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index). * - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored. * * @param order - storage layout @@ -64,7 +64,7 @@ interface Routine { * * ## Notes * - * - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). + * - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index). * - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored. * * @param M - number of rows in `A` @@ -100,7 +100,7 @@ interface Routine { * * ## Notes * -* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). +* - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index). * - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored. * * @param order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/lib/ndarray.js index 08de8c08d397..a45da8bcb634 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/lib/ndarray.js @@ -33,7 +33,7 @@ var reinterpret = require( '@stdlib/strided/base/reinterpret-complex128' ); * * ## Notes * -* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). +* - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index). * - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored. * * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/lib/zindex_of_column.js b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/lib/zindex_of_column.js index a4bfaf022dc0..201caa5c3551 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/lib/zindex_of_column.js +++ b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-column/lib/zindex_of_column.js @@ -36,7 +36,7 @@ var ndarray = require( './ndarray.js' ); * * ## Notes * -* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). +* - If the function is provided an empty matrix or if the function is unable to find a matching column, the function returns `-1` (i.e., an invalid index). * - The `workspace` array is only applicable when an input matrix is stored in row-major order. When the matrix is stored in column-major order, the workspace array is ignored. * * @param {string} order - storage layout