Skip to content

Commit 72d9f3e

Browse files
committed
Auto-generated commit
1 parent 7001e21 commit 72d9f3e

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-06-22)
7+
## Unreleased (2026-07-03)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`b71a63d`](https://github.com/stdlib-js/stdlib/commit/b71a63d212d3943412faa229884d0ee56ee429da) - **style:** remove stray spaces [(#13248)](https://github.com/stdlib-js/stdlib/pull/13248) _(by Philipp Burckhardt)_
1516
- [`3901886`](https://github.com/stdlib-js/stdlib/commit/3901886ff5ff6bdbcfd65ea52109fee0b0e1ff03) - **docs:** fix examples and descriptions in top-level `array` declarations [(#12375)](https://github.com/stdlib-js/stdlib/pull/12375) _(by Philipp Burckhardt, Athan Reines)_
1617
- [`7ae30c3`](https://github.com/stdlib-js/stdlib/commit/7ae30c37a2db6298fc32bcfce8e52db8e940d1e5) - **docs:** improve doctests for complex number typed arrays in `array/complex128` [(#12071)](https://github.com/stdlib-js/stdlib/pull/12071) _(by Karan Anand)_
1718
- [`32af5b8`](https://github.com/stdlib-js/stdlib/commit/32af5b8558638f4e0a35432fb355affd8bce097d) - **test:** fix `Complex128` import in `array/complex128` [(#12064)](https://github.com/stdlib-js/stdlib/pull/12064) _(by Karan Anand)_

docs/types/index.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -498,9 +498,9 @@ declare class Complex128Array implements Complex128ArrayInterface {
498498
*
499499
* var arr = new Complex128Array( 3 );
500500
*
501-
* arr.set( [ 1.0 , 1.0 ], 0 );
502-
* arr.set( [ 2.0 , 2.0 ], 1 );
503-
* arr.set( [ 3.0 , 3.0 ], 2 );
501+
* arr.set( [ 1.0, 1.0 ], 0 );
502+
* arr.set( [ 2.0, 2.0 ], 1 );
503+
* arr.set( [ 3.0, 3.0 ], 2 );
504504
*
505505
* var bool = arr.every( predicate );
506506
* // returns true
@@ -1006,9 +1006,9 @@ declare class Complex128Array implements Complex128ArrayInterface {
10061006
*
10071007
* var arr = new Complex128Array( 3 );
10081008
*
1009-
* arr.set( [ 1.0 , -1.0 ], 0 );
1010-
* arr.set( [ 2.0 , 2.0 ], 1 );
1011-
* arr.set( [ 3.0 , -3.0 ], 2 );
1009+
* arr.set( [ 1.0, -1.0 ], 0 );
1010+
* arr.set( [ 2.0, 2.0 ], 1 );
1011+
* arr.set( [ 3.0, -3.0 ], 2 );
10121012
*
10131013
* var bool = arr.some( predicate );
10141014
* // returns true

0 commit comments

Comments
 (0)