Skip to content

Commit 4440e1f

Browse files
committed
Auto-generated commit
1 parent 2287eef commit 4440e1f

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,28 @@
146146

147147
<!-- /.package -->
148148

149+
<section class="package" id="ndarray-iter-indices-unreleased">
150+
151+
#### [@stdlib/ndarray/iter/indices](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/iter/indices)
152+
153+
<details>
154+
155+
<section class="bug-fixes">
156+
157+
##### Bug Fixes
158+
159+
- [`a299630`](https://github.com/stdlib-js/stdlib/commit/a299630d08a49ba51c6e3501fbd7d215338ca23a) - avoid potential external mutation
160+
161+
</section>
162+
163+
<!-- /.bug-fixes -->
164+
165+
</details>
166+
167+
</section>
168+
169+
<!-- /.package -->
170+
149171
<section class="package" id="ndarray-map-unreleased">
150172

151173
#### [@stdlib/ndarray/map](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/map)
@@ -204,6 +226,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
204226

205227
<details>
206228

229+
- [`a299630`](https://github.com/stdlib-js/stdlib/commit/a299630d08a49ba51c6e3501fbd7d215338ca23a) - **fix:** avoid potential external mutation _(by Athan Reines)_
207230
- [`2d9de13`](https://github.com/stdlib-js/stdlib/commit/2d9de13da6f54c36452274c5179e1354c7be3f34) - **docs:** fix description _(by Athan Reines)_
208231
- [`3ea906b`](https://github.com/stdlib-js/stdlib/commit/3ea906bb64f93b4d323bc91f99a176d2729a2cc9) - **feat:** add `ndarray/map` [(#3314)](https://github.com/stdlib-js/stdlib/pull/3314) _(by Muhammad Haris, Athan Reines)_
209232
- [`cf7d38a`](https://github.com/stdlib-js/stdlib/commit/cf7d38ae3e7bce92cf47778f7b1c3da731121d77) - **docs:** update related packages sections [(#3527)](https://github.com/stdlib-js/stdlib/pull/3527) _(by stdlib-bot)_

iter/indices/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function nditerIndices( shape ) {
148148
};
149149
}
150150
if ( i > 0 ) {
151-
idx = nextCartesianIndex( shape, opts.order, idx, dim, idx );
151+
idx = nextCartesianIndex( sh, opts.order, idx, dim, idx );
152152
}
153153
// Return the next set of indices:
154154
return {

0 commit comments

Comments
 (0)