Skip to content

Commit

Permalink
docs: fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Aug 11, 2024
1 parent 13e541d commit 7a4424b
Showing 1 changed file with 1 addition and 1 deletion.
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 7a4424b

Please sign in to comment.