Skip to content

Commit ea93736

Browse files
committed
Auto-generated commit
1 parent 3eaaaba commit ea93736

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,7 @@
589589

590590
### Bug Fixes
591591

592+
- [`e47ee45`](https://github.com/stdlib-js/stdlib/commit/e47ee4551cf19ad584361fb80c9eed84ff9ea792) - resolve bugs, docs, and JSDoc type errors [(#11337)](https://github.com/stdlib-js/stdlib/pull/11337)
592593
- [`d4710cd`](https://github.com/stdlib-js/stdlib/commit/d4710cd4279abf2e1e8383ce0e1bfbfadf4b609a) - improve type specificity with overloads
593594
- [`762f410`](https://github.com/stdlib-js/stdlib/commit/762f410098b29afa3823ab1191553101db0dcead) - correct grammar in ndarray type test comments [(#11154)](https://github.com/stdlib-js/stdlib/pull/11154)
594595
- [`ec6b646`](https://github.com/stdlib-js/stdlib/commit/ec6b64660490ae835e6991f53d1fb3db9985d499) - ensure support for \"generic\" ndarrays
@@ -831,6 +832,7 @@ A total of 45 issues were closed in this release:
831832

832833
<details>
833834

835+
- [`e47ee45`](https://github.com/stdlib-js/stdlib/commit/e47ee4551cf19ad584361fb80c9eed84ff9ea792) - **fix:** resolve bugs, docs, and JSDoc type errors [(#11337)](https://github.com/stdlib-js/stdlib/pull/11337) _(by Philipp Burckhardt)_
834836
- [`d1a105c`](https://github.com/stdlib-js/stdlib/commit/d1a105c74fb2d139c4e6aba1b4aee6188c2aea64) - **test:** update tests to align with increased specificity _(by Athan Reines)_
835837
- [`d4710cd`](https://github.com/stdlib-js/stdlib/commit/d4710cd4279abf2e1e8383ce0e1bfbfadf4b609a) - **fix:** improve type specificity with overloads _(by Athan Reines)_
836838
- [`142964b`](https://github.com/stdlib-js/stdlib/commit/142964bca2c6774129f0807bcb9786ebc373646d) - **feat:** refactor declarations to satisfy TS's structural typing _(by Athan Reines)_

base/unary-reduce-strided1d-assign-struct/lib/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ var MAX_DIMS = UNARY.length - 1;
153153
* 'strides': [ 0, 0 ],
154154
* 'offset': 0,
155155
* 'order': 'row-major'
156-
};
156+
* };
157157
* var alpha = {
158158
* 'dtype': 'float64',
159159
* 'data': [ 0.05 ],
@@ -237,7 +237,7 @@ var MAX_DIMS = UNARY.length - 1;
237237
* 'strides': [ 0 ],
238238
* 'offset': 0,
239239
* 'order': 'row-major'
240-
};
240+
* };
241241
* var alpha = {
242242
* 'dtype': 'float64',
243243
* 'data': [ 0.05 ],
@@ -322,7 +322,7 @@ var MAX_DIMS = UNARY.length - 1;
322322
* 'strides': [ 0, 0, 0 ],
323323
* 'offset': 0,
324324
* 'order': 'row-major'
325-
};
325+
* };
326326
* var alpha = {
327327
* 'dtype': 'float64',
328328
* 'data': [ 0.05 ],

base/unary-reduce-strided1d-by/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ function unaryReduceStrided1dBy( fcn, arrays, dims, options, clbk, thisArg ) { /
460460
// Determine whether we only have one loop dimension and can thus readily perform one-dimensional iteration...
461461
if ( K === 1 ) {
462462
if ( y.accessorProtocol ) {
463-
return ACCESSOR_UNARY[ K ]( fcn, arr, strategy, workspace, views, ldims, d, sl, opts, FLG, cb, ctx );
463+
return ACCESSOR_UNARY[ K ]( fcn, arr, strategy, views, workspace, ldims, d, sl, opts, FLG, cb, ctx );
464464
}
465465
return UNARY[ K ]( fcn, arr, strategy, views, workspace, ldims, d, sl, opts, FLG, cb, ctx );
466466
}

0 commit comments

Comments
 (0)