Skip to content

Commit f0b97e8

Browse files
committed
Auto-generated commit
1 parent 7bddcc2 commit f0b97e8

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

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 (2025-11-01)
7+
## Unreleased (2025-11-02)
88

99
<section class="features">
1010

@@ -610,6 +610,7 @@ A total of 31 issues were closed in this release:
610610

611611
<details>
612612

613+
- [`e07ebc2`](https://github.com/stdlib-js/stdlib/commit/e07ebc2ed009ef1fcf98ad476c6077c3a02a782f) - **docs:** update examples _(by Athan Reines)_
613614
- [`dcafcbc`](https://github.com/stdlib-js/stdlib/commit/dcafcbc6ddad41e4cd12d46dad426fe80bf7eab3) - **feat:** add `ndarray/base/some` [(#7653)](https://github.com/stdlib-js/stdlib/pull/7653) _(by Muhammad Haris, Athan Reines)_
614615
- [`186033e`](https://github.com/stdlib-js/stdlib/commit/186033e3cccf7faffaad1c101404de68f688027e) - **fix:** address off-by-one bug _(by Athan Reines)_
615616
- [`95313b8`](https://github.com/stdlib-js/stdlib/commit/95313b80fc669b87cf31298db9e03ff25cfdd312) - **fix:** address off-by-one bug _(by Athan Reines)_

dtype/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ var s;
112112
var i;
113113
for ( i = 0; i < slices.length; i++ ) {
114114
s = slice( x, slices[ i ] );
115-
console.log( '%s => %s', s.dtype, dtype( s ) );
115+
console.log( '%s => %s', dtype( x ), dtype( s ) );
116116
}
117117
```
118118

dtype/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@ var s;
5353
var i;
5454
for ( i = 0; i < slices.length; i++ ) {
5555
s = slice( x, slices[ i ] );
56-
console.log( '%s => %s', s.dtype, dtype( s ) );
56+
console.log( '%s => %s', dtype( x ), dtype( s ) );
5757
}

0 commit comments

Comments
 (0)