Skip to content

Commit d6d2ea7

Browse files
committed
Auto-generated commit
1 parent 3902da3 commit d6d2ea7

3 files changed

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

99
<section class="features">
1010

@@ -76,6 +76,7 @@ This release closes the following issue:
7676

7777
<details>
7878

79+
- [`669fa61`](https://github.com/stdlib-js/stdlib/commit/669fa61233ff20dd079ca971291e30cc36992046) - **docs:** fix examples to use supported dtypes [(#13392)](https://github.com/stdlib-js/stdlib/pull/13392) _(by Philipp Burckhardt)_
7980
- [`f1eeb72`](https://github.com/stdlib-js/stdlib/commit/f1eeb7279dd2bd1dbec48234ac146791a97a406d) - **chore:** update keywords [(#13334)](https://github.com/stdlib-js/stdlib/pull/13334) _(by Philipp Burckhardt)_
8081
- [`6b88a63`](https://github.com/stdlib-js/stdlib/commit/6b88a637281fd936f6526c40df69299cf72463c5) - **fix:** add missing index signature to Float16Array class declaration [(#13332)](https://github.com/stdlib-js/stdlib/pull/13332) _(by Philipp Burckhardt, Athan Reines)_
8182
- [`21dc834`](https://github.com/stdlib-js/stdlib/commit/21dc834bf84debd42bc94aae3d29d20eb0f2ae60) - **docs:** update notes [(#13317)](https://github.com/stdlib-js/stdlib/pull/13317) _(by stdlib-bot)_

ones-like/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ var onesLike = require( '@stdlib/array/ones-like' );
108108
var x = zeros( 4, 'complex128' );
109109

110110
// Get a list of array data types:
111-
var dt = dtypes();
111+
var dt = dtypes( 'numeric_and_generic' );
112112

113113
// Generate filled arrays...
114114
var y;

ones-like/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var onesLike = require( './../lib' );
2626
var x = zeros( 4, 'complex128' );
2727

2828
// Get a list of array data types:
29-
var dt = dtypes();
29+
var dt = dtypes( 'numeric_and_generic' );
3030

3131
// Generate filled arrays...
3232
var y;

0 commit comments

Comments
 (0)