File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 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)_
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ var s;
112112var i;
113113for ( 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
Original file line number Diff line number Diff line change 5353var i ;
5454for ( 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}
You can’t perform that action at this time.
0 commit comments