Skip to content

Commit e51f08c

Browse files
committed
Auto-generated commit
1 parent b50f13c commit e51f08c

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -879,6 +879,8 @@ A total of 49 issues were closed in this release:
879879

880880
<details>
881881

882+
- [`1bb47ae`](https://github.com/stdlib-js/stdlib/commit/1bb47aee4385a96718afb38792d96ec5ec09e7da) - **docs:** fix comment _(by Athan Reines)_
883+
- [`8c95fbf`](https://github.com/stdlib-js/stdlib/commit/8c95fbf9f000fba1e6a302792a33ac7394262a1c) - **docs:** fix comment _(by Athan Reines)_
882884
- [`d1f33dc`](https://github.com/stdlib-js/stdlib/commit/d1f33dcee27be7cc4bfb9ddd977497ff21ee8be6) - **docs:** update ToC _(by Athan Reines)_
883885
- [`bb94409`](https://github.com/stdlib-js/stdlib/commit/bb944095335edac473c0c655d7300228ed856ca5) - **feat:** add `rot90` to namespace _(by Athan Reines)_
884886
- [`902e522`](https://github.com/stdlib-js/stdlib/commit/902e522762ec678bc548d6a503d5a94046e708f1) - **feat:** add `ndarray/rot90` [(#11705)](https://github.com/stdlib-js/stdlib/pull/11705) _(by Muhammad Haris, Athan Reines)_

base/rotl90/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import rotl90 = require( './index' );
4141
rotl90( zeros( 'generic', sh, ord ), 1, false ); // $ExpectType genericndarray<number>
4242
}
4343

44-
// The compiler throws an error if the function is provided a first argument which is not an ndarray having a recognized/supported data type...
44+
// The compiler throws an error if the function is provided a first argument which is not an ndarray...
4545
{
4646
rotl90( '10', 1, false ); // $ExpectError
4747
rotl90( 10, 1, false ); // $ExpectError

base/rotr90/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import rotr90 = require( './index' );
4141
rotr90( zeros( 'generic', sh, ord ), 1, false ); // $ExpectType genericndarray<number>
4242
}
4343

44-
// The compiler throws an error if the function is provided a first argument which is not an ndarray having a recognized/supported data type...
44+
// The compiler throws an error if the function is provided a first argument which is not an ndarray...
4545
{
4646
rotr90( '10', 1, false ); // $ExpectError
4747
rotr90( 10, 1, false ); // $ExpectError

0 commit comments

Comments
 (0)