diff --git a/lib/node_modules/@stdlib/array/fixed-endian-factory/benchmark/benchmark.of.js b/lib/node_modules/@stdlib/array/fixed-endian-factory/benchmark/benchmark.of.js index 676ab5794f04..1555f002b184 100644 --- a/lib/node_modules/@stdlib/array/fixed-endian-factory/benchmark/benchmark.of.js +++ b/lib/node_modules/@stdlib/array/fixed-endian-factory/benchmark/benchmark.of.js @@ -52,7 +52,7 @@ bench( format( '%s:of', pkg ), function benchmark( b ) { b.end(); }); -bench( format( '%s:len=5', pkg ), function benchmark( b ) { +bench( format( '%s:of:len=5', pkg ), function benchmark( b ) { var buf; var arr; var i; diff --git a/lib/node_modules/@stdlib/array/fixed-endian-float32/benchmark/benchmark.of.js b/lib/node_modules/@stdlib/array/fixed-endian-float32/benchmark/benchmark.of.js index 53df1c72d761..496435846516 100644 --- a/lib/node_modules/@stdlib/array/fixed-endian-float32/benchmark/benchmark.of.js +++ b/lib/node_modules/@stdlib/array/fixed-endian-float32/benchmark/benchmark.of.js @@ -47,7 +47,7 @@ bench( format( '%s:of', pkg ), function benchmark( b ) { b.end(); }); -bench( format( '%s:len=5', pkg ), function benchmark( b ) { +bench( format( '%s:of:len=5', pkg ), function benchmark( b ) { var buf; var arr; var i; diff --git a/lib/node_modules/@stdlib/blas/ext/base/dcircshift/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/ext/base/dcircshift/benchmark/c/benchmark.length.c index 6735dd107ea9..e4db852ccc74 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dcircshift/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/ext/base/dcircshift/benchmark/c/benchmark.length.c @@ -183,10 +183,6 @@ int main( void ) { print_results( iter, elapsed ); printf( "ok %d benchmark finished\n", count ); } - } - for ( i = MIN; i <= MAX; i++ ) { - len = pow( 10, i ); - iter = ITERATIONS / pow( 10, i-1 ); for ( j = 0; j < REPEATS; j++ ) { count += 1; printf( "# c::%s:ndarray:len=%d\n", NAME, len ); diff --git a/lib/node_modules/@stdlib/blas/ext/base/drrss/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/drrss/docs/types/index.d.ts index d83f3970e299..7352136d626b 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/drrss/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/drrss/docs/types/index.d.ts @@ -68,7 +68,7 @@ interface Routine { } /** -* Compute the square root of the residual sum of squares of two double-precision floating-point strided arrays. +* Computes the square root of the residual sum of squares of two double-precision floating-point strided arrays. * * @param N - number of indexed elements * @param x - first input array diff --git a/lib/node_modules/@stdlib/blas/ext/base/drsskbn/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/drsskbn/docs/types/index.d.ts index 56c0cc3eb14a..e3196601cf30 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/drsskbn/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/drsskbn/docs/types/index.d.ts @@ -68,7 +68,7 @@ interface Routine { } /** -* Compute the residual sum of squares of two double-precision floating-point strided arrays using an improved Kahan–Babuška algorithm. +* Computes the residual sum of squares of two double-precision floating-point strided arrays using an improved Kahan–Babuška algorithm. * * @param N - number of indexed elements * @param x - first input array diff --git a/lib/node_modules/@stdlib/ndarray/base/copy/docs/types/test.ts b/lib/node_modules/@stdlib/ndarray/base/copy/docs/types/test.ts index 28cc5ccc8d79..522e667f9e64 100644 --- a/lib/node_modules/@stdlib/ndarray/base/copy/docs/types/test.ts +++ b/lib/node_modules/@stdlib/ndarray/base/copy/docs/types/test.ts @@ -43,7 +43,7 @@ import copy = require( './index' ); copy( zeros( 'generic', sh, ord ) ); // $ExpectType genericndarray } -// The compiler throws an error if the function is provided a first argument is not an ndarray... +// The compiler throws an error if the function is provided a first argument which is not an ndarray... { copy( '10' ); // $ExpectError copy( 10 ); // $ExpectError diff --git a/lib/node_modules/@stdlib/ndarray/base/empty-like/docs/types/test.ts b/lib/node_modules/@stdlib/ndarray/base/empty-like/docs/types/test.ts index 4005763b2c24..1dff53593cde 100644 --- a/lib/node_modules/@stdlib/ndarray/base/empty-like/docs/types/test.ts +++ b/lib/node_modules/@stdlib/ndarray/base/empty-like/docs/types/test.ts @@ -43,7 +43,7 @@ import emptyLike = require( './index' ); emptyLike( zeros( 'generic', sh, ord ) ); // $ExpectType typedndarray } -// The compiler throws an error if the function is provided a first argument is not an ndarray which has a recognized/supported data type... +// The compiler throws an error if the function is provided a first argument which is not an ndarray having a recognized/supported data type... { emptyLike( '10' ); // $ExpectError emptyLike( 10 ); // $ExpectError diff --git a/lib/node_modules/@stdlib/ndarray/base/nans/test/test.js b/lib/node_modules/@stdlib/ndarray/base/nans/test/test.js index 06f5fac44bae..3472ebca7a2f 100644 --- a/lib/node_modules/@stdlib/ndarray/base/nans/test/test.js +++ b/lib/node_modules/@stdlib/ndarray/base/nans/test/test.js @@ -92,7 +92,8 @@ tape( 'the function throws an error if provided an unrecognized/unsupported data 'Float64', 'Float32', 'FLOAT64', - 'FLOAT32' + 'FLOAT32', + 'GENERIC' ]; for ( i = 0; i < values.length; i++ ) {