Skip to content

Commit 5ab2e80

Browse files
committed
docs: update comments
1 parent dc1e33f commit 5ab2e80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/iter/row-entries/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ var x = array( zeroTo( 27 ), {
146146
'shape': [ 3, 3, 3 ]
147147
});
148148

149-
// Create an iterator for returning [index, value] pairs:
149+
// Create an iterator for returning [index, row] pairs:
150150
var it = nditerRowEntries( x );
151151

152152
// Perform manual iteration...

lib/node_modules/@stdlib/ndarray/iter/row-entries/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var x = array( zeroTo( 27 ), {
2828
'shape': [ 3, 3, 3 ]
2929
});
3030

31-
// Create an iterator for returning [index, value] pairs:
31+
// Create an iterator for returning [index, row] pairs:
3232
var it = nditerRowEntries( x );
3333

3434
// Perform manual iteration...

0 commit comments

Comments
 (0)