Skip to content

Commit b8caa80

Browse files
committed
Auto-generated commit
1 parent 85fe99e commit b8caa80

5 files changed

Lines changed: 7 additions & 5 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-06-06)
7+
## Unreleased (2026-06-07)
88

99
<section class="features">
1010

@@ -33,6 +33,7 @@
3333

3434
<details>
3535

36+
- [`cd863cf`](https://github.com/stdlib-js/stdlib/commit/cd863cfcc93259fc77714263c6c8b532c84563a3) - **docs:** propagate recent develop fixes to sibling packages [(#12642)](https://github.com/stdlib-js/stdlib/pull/12642) _(by Philipp Burckhardt)_
3637
- [`4e89875`](https://github.com/stdlib-js/stdlib/commit/4e898755cf98f6e3b8d8c24079fb9ea7730f2d9c) - **fix:** preserve input ndarray type in `ndarray/base/maybe-broadcast-array-except-dimensions` [(#12629)](https://github.com/stdlib-js/stdlib/pull/12629) _(by Philipp Burckhardt, Athan Reines)_
3738
- [`95016b8`](https://github.com/stdlib-js/stdlib/commit/95016b8c7179f978fb8ef5b272cff36b523e06e6) - **fix:** add missing import in `ndarray/base/unflatten` declarations [(#12625)](https://github.com/stdlib-js/stdlib/pull/12625) _(by Philipp Burckhardt, Athan Reines)_
3839
- [`3116666`](https://github.com/stdlib-js/stdlib/commit/3116666b3e530b2e6fb161924ae4c43cdf02905b) - **docs:** correct TSDoc across `ndarray` TypeScript declarations [(#12635)](https://github.com/stdlib-js/stdlib/pull/12635) _(by Philipp Burckhardt, Athan Reines)_

base/maybe-broadcast-arrays/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
broadcast ndarray-like objects within internal implementations and to do so
2020
with minimal overhead.
2121

22-
The function throws an error if a provided broadcast-incompatible ndarrays.
22+
The function throws an error if provided broadcast-incompatible ndarrays.
2323

2424
Parameters
2525
----------

base/to-unflattened/docs/types/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23+
import { Collection } from '@stdlib/types/array';
2324
import { ndarray } from '@stdlib/types/ndarray';
2425

2526
/**
@@ -39,7 +40,7 @@ import { ndarray } from '@stdlib/types/ndarray';
3940
* var y = toUnflattened( x, 0, [ 2, 3 ] );
4041
* // returns <ndarray>[ [ 1.0, 2.0, 3.0 ], [ 4.0, 5.0, 6.0 ] ]
4142
*/
42-
declare function toUnflattened<U extends ndarray = ndarray>( x: U, dim: number, sizes: ArrayLike<number> ): U;
43+
declare function toUnflattened<U extends ndarray = ndarray>( x: U, dim: number, sizes: Collection<number> ): U;
4344

4445

4546
// EXPORTS //

iter/interleave-subarrays/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
may affect multiple elements. If you need to write to a subarray, copy the
1010
subarray before attempting mutation.
1111

12-
The function throws an error if a provided broadcast-incompatible ndarrays.
12+
The function throws an error if provided broadcast-incompatible ndarrays.
1313

1414
If an environment supports Symbol.iterator, the returned iterator is
1515
iterable.

maybe-broadcast-arrays/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
writing to a view may affect multiple elements. If you need to write to an
1919
input ndarray, copy the input ndarray before broadcasting.
2020

21-
The function throws an error if a provided broadcast-incompatible ndarrays.
21+
The function throws an error if provided broadcast-incompatible ndarrays.
2222

2323
Parameters
2424
----------

0 commit comments

Comments
 (0)