Skip to content

Commit 089ee58

Browse files
committed
Auto-generated commit
1 parent 050fd92 commit 089ee58

4 files changed

Lines changed: 11 additions & 9 deletions

File tree

CHANGELOG.md

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

7-
## Unreleased (2026-06-07)
7+
## Unreleased (2026-06-16)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`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)_
1516
- [`0962cbd`](https://github.com/stdlib-js/stdlib/commit/0962cbd0669a21d5118d4805dfe39f4a3db9f9ad) - **bench:** use `empty` rather than `zeros` _(by Athan Reines)_
1617
- [`5cad666`](https://github.com/stdlib-js/stdlib/commit/5cad666695971ba8af5bc2392893d1f32687a1f1) - **bench:** refactor to use string interpolation in `array/empty-like` [(#10484)](https://github.com/stdlib-js/stdlib/pull/10484) _(by Aman Singh)_
1718

@@ -25,10 +26,11 @@
2526

2627
### Contributors
2728

28-
A total of 2 people contributed to this release. Thank you to the following contributors:
29+
A total of 3 people contributed to this release. Thank you to the following contributors:
2930

3031
- Aman Singh
3132
- Athan Reines
33+
- Philipp Burckhardt
3234

3335
</section>
3436

dist/index.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import { AnyArray, DataTypeMap, TypedArray, BooleanTypedArray, ComplexTypedArray
4545
declare function emptyLike( x: Array<any> ): Array<number>;
4646

4747
/**
48-
* Creates an uninitialized array having the same length as a provided input array.
48+
* Creates an uninitialized array having the same length and data type as a provided input array.
4949
*
5050
* ## Notes
5151
*
@@ -61,8 +61,8 @@ declare function emptyLike( x: Array<any> ): Array<number>;
6161
* var x = zeros( 2, 'float64' );
6262
* // returns <Float64Array>[ 0.0, 0.0 ]
6363
*
64-
* var arr = emptyLike( x, 'float32' );
65-
* // returns <Float32Array>
64+
* var arr = emptyLike( x );
65+
* // returns <Float64Array>
6666
*/
6767
declare function emptyLike<T extends TypedArray | ComplexTypedArray | BooleanTypedArray>( x: T ): T;
6868

0 commit comments

Comments
 (0)