Skip to content

Commit bd8ccb0

Browse files
committed
Auto-generated commit
1 parent c0045ef commit bd8ccb0

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 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-04-14)
7+
## Unreleased (2025-04-16)
88

99
<section class="packages">
1010

@@ -1005,6 +1005,7 @@ This release closes the following issue:
10051005

10061006
##### Bug Fixes
10071007

1008+
- [`cdc66ce`](https://github.com/stdlib-js/stdlib/commit/cdc66ce1876b95dd8c23aa2f869aebe9b842e86e) - remove unused parameters
10081009
- [`0ede0da`](https://github.com/stdlib-js/stdlib/commit/0ede0dafa46ddea7dfce7be63250ca9ae0c1c546) - add missing imports in `ndarray/base/unary-reduce-subarray` [(#6642)](https://github.com/stdlib-js/stdlib/pull/6642)
10091010
- [`f0d205d`](https://github.com/stdlib-js/stdlib/commit/f0d205d7073055c7a69f1ba7ccee95671ab762ba) - address indexing error
10101011
- [`5768926`](https://github.com/stdlib-js/stdlib/commit/5768926be4fb253947f5d44bcf6b9d8bb5c75274) - update error message
@@ -1496,6 +1497,7 @@ A total of 13 people contributed to this release. Thank you to the following con
14961497

14971498
<details>
14981499

1500+
- [`cdc66ce`](https://github.com/stdlib-js/stdlib/commit/cdc66ce1876b95dd8c23aa2f869aebe9b842e86e) - **fix:** remove unused parameters _(by Athan Reines)_
14991501
- [`9485c2b`](https://github.com/stdlib-js/stdlib/commit/9485c2b14a159557d8d097c2cfbd106db12a2210) - **chore:** fix EditorConfig lint errors (issue #6663) [(#6672)](https://github.com/stdlib-js/stdlib/pull/6672) _(by Dipjyoti Das)_
15001502
- [`f9d3b79`](https://github.com/stdlib-js/stdlib/commit/f9d3b793f4100fcf1c9b7391550d3264bb395b00) - **docs:** update related packages sections [(#6670)](https://github.com/stdlib-js/stdlib/pull/6670) _(by stdlib-bot)_
15011503
- [`0ede0da`](https://github.com/stdlib-js/stdlib/commit/0ede0dafa46ddea7dfce7be63250ca9ae0c1c546) - **fix:** add missing imports in `ndarray/base/unary-reduce-subarray` [(#6642)](https://github.com/stdlib-js/stdlib/pull/6642) _(by Muhammad Haris)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
5151
EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
5252
Frank Kovacs <fran70kk@gmail.com>
5353
GK Bishnoi <gkishan1kyt@gmail.com>
54+
GURU PRASAD SHARMA <168292003+GURUPRASADSHARMA@users.noreply.github.com>
5455
Gaurav <gaurav70380@gmail.com>
5556
Gautam sharma <gautamkrishnasharma1@gmail.com>
5657
Golden Kumar <103646877+AuenKr@users.noreply.github.com>

base/unary-reduce-subarray/lib/1d_accessors.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ var offsets = require( './offsets.js' );
3535
* @param {Array<Object>} arrays - ndarrays
3636
* @param {Array<Object>} views - initialized ndarray-like objects representing sub-array views
3737
* @param {IntegerArray} strides - loop dimension strides for the input ndarray
38-
* @param {IntegerArray} dims - list of dimensions over which to perform a reduction
3938
* @param {Options} opts - function options
4039
* @returns {void}
4140
*
@@ -98,12 +97,12 @@ var offsets = require( './offsets.js' );
9897
* ];
9998
*
10099
* // Perform a reduction:
101-
* unary1d( base, [ x, y ], views, [ 4 ], [ 2, 3 ], {} );
100+
* unary1d( base, [ x, y ], views, [ 4 ], {} );
102101
*
103102
* var arr = ndarray2array( y.data, y.shape, y.strides, y.offset, y.order );
104103
* // returns [ true, false, true ]
105104
*/
106-
function unary1d( fcn, arrays, views, strides, dims, opts ) {
105+
function unary1d( fcn, arrays, views, strides, opts ) {
107106
var ybuf;
108107
var set;
109108
var dv0;

0 commit comments

Comments
 (0)