Skip to content

Commit ac21bf8

Browse files
committed
Auto-generated commit
1 parent d4035c9 commit ac21bf8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 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 (2025-09-09)
7+
## Unreleased (2025-09-10)
88

99
<section class="features">
1010

@@ -364,6 +364,7 @@
364364

365365
### Bug Fixes
366366

367+
- [`d9d7221`](https://github.com/stdlib-js/stdlib/commit/d9d7221f237eefbf51e55782acc2d068f616d9ae) - remove double semicolon in TypeScript example
367368
- [`ccbe916`](https://github.com/stdlib-js/stdlib/commit/ccbe91618e58d7955db65dcf29cdcb2651408857) - remove stray include
368369
- [`73e569f`](https://github.com/stdlib-js/stdlib/commit/73e569fd71650dbd2c18ce3fec9c373767fcb027) - address assignment bug
369370
- [`b00978b`](https://github.com/stdlib-js/stdlib/commit/b00978b67f6f32f7f6a343f29685ff4da30bd89d) - address assignment bug
@@ -509,6 +510,7 @@ A total of 24 issues were closed in this release:
509510

510511
<details>
511512

513+
- [`d9d7221`](https://github.com/stdlib-js/stdlib/commit/d9d7221f237eefbf51e55782acc2d068f616d9ae) - **fix:** remove double semicolon in TypeScript example _(by Philipp Burckhardt)_
512514
- [`7944b3f`](https://github.com/stdlib-js/stdlib/commit/7944b3f8ddcaf5f073dd6f304c30d6f385f94d23) - **feat:** add `ndarray/flatten` [(#8021)](https://github.com/stdlib-js/stdlib/pull/8021) _(by Muhammad Haris, Athan Reines)_
513515
- [`4f0bbc6`](https://github.com/stdlib-js/stdlib/commit/4f0bbc61e1be1b422966710f4fd7a4a09e4605a6) - **bench:** remove `const` qualifiers _(by Athan Reines)_
514516
- [`ccbe916`](https://github.com/stdlib-js/stdlib/commit/ccbe91618e58d7955db65dcf29cdcb2651408857) - **fix:** remove stray include _(by Athan Reines)_

flatten/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ interface Options {
6969
* var array = require( '@stdlib/ndarray/array' );
7070
* var ndarray2array = require( '@stdlib/ndarray/to-array' );
7171
*
72-
* var x = array( [ [ [ 1.0, 2.0 ] ], [ [ 3.0, 4.0 ] ], [ [ 5.0, 6.0 ] ] ] );;
72+
* var x = array( [ [ [ 1.0, 2.0 ] ], [ [ 3.0, 4.0 ] ], [ [ 5.0, 6.0 ] ] ] );
7373
* // return <ndarray>
7474
*
7575
* var y = flatten( x );

0 commit comments

Comments
 (0)