diff --git a/lib/node_modules/@stdlib/ndarray/base/ones-like/docs/types/test.ts b/lib/node_modules/@stdlib/ndarray/base/ones-like/docs/types/test.ts index c7285f1ff458..a36a06f9ef1a 100644 --- a/lib/node_modules/@stdlib/ndarray/base/ones-like/docs/types/test.ts +++ b/lib/node_modules/@stdlib/ndarray/base/ones-like/docs/types/test.ts @@ -41,7 +41,7 @@ import onesLike = require( './index' ); onesLike( ones( 'generic', sh, ord ) ); // $ExpectType genericndarray } -// 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... { onesLike( '10' ); // $ExpectError onesLike( 10 ); // $ExpectError diff --git a/lib/node_modules/@stdlib/ndarray/base/zeros-like/docs/types/test.ts b/lib/node_modules/@stdlib/ndarray/base/zeros-like/docs/types/test.ts index 14ddb8617ebb..67c56f570298 100644 --- a/lib/node_modules/@stdlib/ndarray/base/zeros-like/docs/types/test.ts +++ b/lib/node_modules/@stdlib/ndarray/base/zeros-like/docs/types/test.ts @@ -41,7 +41,7 @@ import zerosLike = require( './index' ); zerosLike( zeros( 'generic', sh, ord ) ); // $ExpectType genericndarray } -// 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... { zerosLike( '10' ); // $ExpectError zerosLike( 10 ); // $ExpectError