Skip to content

Commit f43b895

Browse files
committed
Auto-generated commit
1 parent 6fb11c9 commit f43b895

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-05-02)
7+
## Unreleased (2026-05-03)
88

99
<section class="features">
1010

@@ -906,6 +906,7 @@ A total of 49 issues were closed in this release:
906906

907907
<details>
908908

909+
- [`498aed4`](https://github.com/stdlib-js/stdlib/commit/498aed42b0cf7323abc97c9d18b76534dc25ee6f) - **refactor:** update error message _(by Athan Reines)_
909910
- [`987f182`](https://github.com/stdlib-js/stdlib/commit/987f182e475a79dd64b586a5b12af84517238f00) - **docs:** fix heading and disable lint rule [(#11840)](https://github.com/stdlib-js/stdlib/pull/11840) _(by Philipp Burckhardt)_
910911
- [`4357292`](https://github.com/stdlib-js/stdlib/commit/4357292825d418623c6f92aefc406a854a13fec6) - **docs:** update namespace table of contents [(#11887)](https://github.com/stdlib-js/stdlib/pull/11887) _(by stdlib-bot)_
911912
- [`7efd598`](https://github.com/stdlib-js/stdlib/commit/7efd598cbd3b40c453e2bcd27ebf142753058547) - **docs:** update ToC _(by Athan Reines)_

base/rot90/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function rot90( x, dims, k, writable ) {
7878
}
7979
sh = getShape( x, true );
8080
if ( sh.length < 2 ) {
81-
throw new RangeError( format( 'invalid argument. Input ndarray must have at least two dimensions. Number of dimensions: %d.', sh.length ) );
81+
throw new RangeError( format( 'invalid argument. First argument must be an ndarray having two or more dimensions. Number of dimensions: %d.', sh.length ) );
8282
}
8383
st = getStrides( x, true );
8484
offset = getOffset( x );

0 commit comments

Comments
 (0)