Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 11, 2024
1 parent d79d03e commit a8e48f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,7 @@ A total of 4 people contributed to this release. Thank you to the following cont

<details>

- [`7a4424b`](https://github.com/stdlib-js/stdlib/commit/7a4424bd81e212e9c7534520213b696c0c64c644) - **docs:** fix comment _(by Athan Reines)_
- [`873b085`](https://github.com/stdlib-js/stdlib/commit/873b085ae0183426f3e8e831a50a42e2df3ba13d) - **feat:** add `nditerSubarrays` to namespace _(by Athan Reines)_
- [`fd9a5c2`](https://github.com/stdlib-js/stdlib/commit/fd9a5c2e29508ab5b393e2273ddb7463be6affb3) - **feat:** add `ndarray/iter/subarrays` _(by Athan Reines)_
- [`46aec25`](https://github.com/stdlib-js/stdlib/commit/46aec25aac5d4a0c8a3fd7b719dd6a080e59beb8) - **feat:** add `nditerSelectDimension` to namespace _(by Athan Reines)_
Expand Down
2 changes: 1 addition & 1 deletion iter/subarrays/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ function nditerSubarrays( x, ndims ) {
j = ( idx[ dim ] + 1 ) % S;
idx[ dim ] = j;
if ( j === 0 ) {
// If we've iterated over all the matrices in the current stack, move on to the next set of matrices:
// If we've iterated over all the subarrays in the current stack, move on to the next set of subarrays:
idx = nextCartesianIndex( shape, 'row-major', idx, dim-1, idx );
}
// Return the next slice:
Expand Down

0 comments on commit a8e48f2

Please sign in to comment.