From 57a37181825c3ad05d4213d8879e85fc75dd5fe3 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 10 Jul 2026 12:39:06 +0000 Subject: [PATCH 1/3] docs: fix REPL description punctuation and TypeScript declaration in `blas/ext/base/dfirst-index-equal` Restore the missing period and paragraph break after the summary line in `docs/repl.txt`, and switch the exported top-level declaration from `declare const` to `declare var` to match the convention used by every other package in the `@stdlib/blas/ext/base` namespace. --- .../@stdlib/blas/ext/base/dfirst-index-equal/docs/repl.txt | 3 ++- .../blas/ext/base/dfirst-index-equal/docs/types/index.d.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/dfirst-index-equal/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/dfirst-index-equal/docs/repl.txt index 253dc158b610..649441ce9b41 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dfirst-index-equal/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/base/dfirst-index-equal/docs/repl.txt @@ -2,7 +2,8 @@ {{alias}}( N, x, strideX, y, strideY ) Returns the index of the first element in a double-precision floating-point strided array equal to a corresponding element in another double-precision - floating-point strided array + floating-point strided array. + The `N` and stride parameters determine which elements in the strided arrays are accessed at runtime. diff --git a/lib/node_modules/@stdlib/blas/ext/base/dfirst-index-equal/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/dfirst-index-equal/docs/types/index.d.ts index 15d43ff03e15..834ebef251fa 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dfirst-index-equal/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/dfirst-index-equal/docs/types/index.d.ts @@ -103,7 +103,7 @@ interface Routine { * var idx = dfirstIndexEqual.ndarray( 4, x, 1, 0, y, 1, 0 ); * // returns 2 */ -declare const dfirstIndexEqual: Routine; +declare var dfirstIndexEqual: Routine; // EXPORTS // From 11b7279757b32ddeed4bcee3a149ab8a31b25471 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 10 Jul 2026 12:39:11 +0000 Subject: [PATCH 2/3] docs: fix REPL heading and lint pragma in `blas/ext/base/sfirst-index-equal` Add the missing `.ndarray` suffix to the `{{alias}}.ndarray(...)` REPL signature and pair the `` before the C ndarray heading with the corresponding `enable` pragma so the rule is not left disabled for the remainder of the document. --- .../@stdlib/blas/ext/base/sfirst-index-equal/README.md | 2 +- .../@stdlib/blas/ext/base/sfirst-index-equal/docs/repl.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/sfirst-index-equal/README.md b/lib/node_modules/@stdlib/blas/ext/base/sfirst-index-equal/README.md index 15344e39db49..a4a2932a4488 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/sfirst-index-equal/README.md +++ b/lib/node_modules/@stdlib/blas/ext/base/sfirst-index-equal/README.md @@ -235,7 +235,7 @@ CBLAS_INT stdlib_strided_sfirst_index_equal( const CBLAS_INT N, const float *X, #### stdlib_strided_sfirst_index_equal_ndarray( N, \*X, strideX, offsetX, \*Y, strideY, offsetY ) - + Returns the index of the first element in a single-precision floating-point strided array equal to a corresponding element in another single-precision floating-point strided array using alternative indexing semantics. diff --git a/lib/node_modules/@stdlib/blas/ext/base/sfirst-index-equal/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/sfirst-index-equal/docs/repl.txt index ea7c0da9d841..e13b62f90852 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/sfirst-index-equal/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/base/sfirst-index-equal/docs/repl.txt @@ -57,7 +57,7 @@ -1 -{{alias}}( N, x, strideX, offsetX, y, strideY, offsetY ) +{{alias}}.ndarray( N, x, strideX, offsetX, y, strideY, offsetY ) Returns the index of the first element in a single-precision floating-point strided array equal to a corresponding element in another single-precision floating-point strided array using alternative indexing semantics. From aa0858266b97e293da5a0c40730c04b916587266 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 10 Jul 2026 12:39:16 +0000 Subject: [PATCH 3/3] style: fix spacing in `Uint64ArrayLike` JSDoc example in `types` Remove the stray double space before `=>` in the `get` accessor and add the missing space before the closing bracket in `buf[ (2*i) ] = value.hi;` so the new `Uint64ArrayLike` example matches the sibling `Uint64Array` example directly below and the "spaces around array indices" rule in `docs/style-guides/javascript`. --- lib/node_modules/@stdlib/types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/types/index.d.ts b/lib/node_modules/@stdlib/types/index.d.ts index 300d14ec529b..e5cbe5d4bfba 100644 --- a/lib/node_modules/@stdlib/types/index.d.ts +++ b/lib/node_modules/@stdlib/types/index.d.ts @@ -847,7 +847,7 @@ declare module '@stdlib/types/array' { * 'byteOffset': 0, * 'BYTES_PER_ELEMENT': 8, * 'length': 4, - * 'get': ( i: number ): obj.Uint64 => { + * 'get': ( i: number ): obj.Uint64 => { * return { * 'hi': buf[ (2*i) ], * 'lo': buf[ (2*i)+1 ], @@ -857,7 +857,7 @@ declare module '@stdlib/types/array' { * }, * 'set': ( value: obj.Uint64, i?: number ) => { * i = ( i ) ? i : 0; - * buf[ (2*i)] = value.hi; + * buf[ (2*i) ] = value.hi; * buf[ (2*i)+1 ] = value.lo; * } * };