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 // 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. 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; * } * };