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 1dff53593cde..0e6f6c0669bb 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 which is not an ndarray having a recognized/supported data type... +// The compiler throws an error if the function is provided a first argument which is not an ndarray... { emptyLike( '10' ); // $ExpectError emptyLike( 10 ); // $ExpectError 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 a36a06f9ef1a..208300647f8d 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 which is not an ndarray having a recognized/supported data type... +// The compiler throws an error if the function is provided a first argument which is not an ndarray... { onesLike( '10' ); // $ExpectError onesLike( 10 ); // $ExpectError diff --git a/lib/node_modules/@stdlib/ndarray/base/rot90/lib/main.js b/lib/node_modules/@stdlib/ndarray/base/rot90/lib/main.js index d8e0fb8f3b61..009c37f4a5c5 100644 --- a/lib/node_modules/@stdlib/ndarray/base/rot90/lib/main.js +++ b/lib/node_modules/@stdlib/ndarray/base/rot90/lib/main.js @@ -39,7 +39,7 @@ var format = require( '@stdlib/string/format' ); * ## Notes * * - If `k > 0`, the function rotates the plane from the first specified dimension toward the second specified dimension. This means that, for a two-dimensional ndarray and `dims = [0, 1]`, the function rotates the plane counterclockwise. -* - If `k < 0`, the function rotates the plane from the second specified dimension toward the first specified dimension. This means that, for a two-dimensional ndarray and `dims = [1, 0]`, the function rotates the plane clockwise. +* - If `k < 0`, the function rotates the plane from the second specified dimension toward the first specified dimension. This means that, for a two-dimensional ndarray and `dims = [0, 1]`, the function rotates the plane clockwise. * - Each provided dimension index must reside on the interval `[-ndims, ndims-1]`. * * @param {ndarray} x - input array diff --git a/lib/node_modules/@stdlib/ndarray/base/transpose/docs/types/test.ts b/lib/node_modules/@stdlib/ndarray/base/transpose/docs/types/test.ts index 6978e32423e8..2ae474b1ae6b 100644 --- a/lib/node_modules/@stdlib/ndarray/base/transpose/docs/types/test.ts +++ b/lib/node_modules/@stdlib/ndarray/base/transpose/docs/types/test.ts @@ -41,7 +41,7 @@ import transpose = require( './index' ); transpose( zeros( 'generic', sh, ord ), false ); // $ExpectType genericndarray } -// The compiler throws an error if the function is provided a first argument which is not an ndarray having a recognized/supported data type... +// The compiler throws an error if the function is provided a first argument which is not an ndarray... { transpose( '10', false ); // $ExpectError transpose( 10, false ); // $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 67c56f570298..e12262d398ae 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 which is not an ndarray having a recognized/supported data type... +// The compiler throws an error if the function is provided a first argument which is not an ndarray... { zerosLike( '10' ); // $ExpectError zerosLike( 10 ); // $ExpectError