Skip to content

Commit 7a4424b

Browse files
committed
docs: fix comment
1 parent 13e541d commit 7a4424b

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/ndarray/iter/subarrays/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/ndarray/iter/subarrays/lib/main.js

Lines changed: 1 addition & 1 deletion
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)