Skip to content

Commit 9f550af

Browse files
committed
Auto-generated commit
1 parent b3d4c03 commit 9f550af

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`7a4424b`](https://github.com/stdlib-js/stdlib/commit/7a4424bd81e212e9c7534520213b696c0c64c644) - **docs:** fix comment _(by Athan Reines)_
2526
- [`fd9a5c2`](https://github.com/stdlib-js/stdlib/commit/fd9a5c2e29508ab5b393e2273ddb7463be6affb3) - **feat:** add `ndarray/iter/subarrays` _(by Athan Reines)_
2627

2728
</details>

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ function nditerSubarrays( x, ndims ) {
178178
j = ( idx[ dim ] + 1 ) % S;
179179
idx[ dim ] = j;
180180
if ( j === 0 ) {
181-
// If we've iterated over all the matrices in the current stack, move on to the next set of matrices:
181+
// If we've iterated over all the subarrays in the current stack, move on to the next set of subarrays:
182182
idx = nextCartesianIndex( shape, 'row-major', idx, dim-1, idx );
183183
}
184184
// Return the next slice:

0 commit comments

Comments
 (0)