Skip to content

Commit 52556c3

Browse files
committed
docs: fix examples
1 parent ec6d1ed commit 52556c3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ] );
3232
* // returns <ndarray>
3333
*
34-
* var iter = nditerColumnEntries( x.shape );
34+
* var iter = nditerColumnEntries( x );
3535
*
3636
* var v = iter.next().value;
3737
* // returns [...]

lib/node_modules/@stdlib/ndarray/iter/entries/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ] );
3131
* // returns <ndarray>
3232
*
33-
* var iter = nditerEntries( x.shape );
33+
* var iter = nditerEntries( x );
3434
*
3535
* var v = iter.next().value;
3636
* // returns [ [ 0, 0, 0 ], 1 ]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ] );
3232
* // returns <ndarray>
3333
*
34-
* var iter = nditerRowEntries( x.shape );
34+
* var iter = nditerRowEntries( x );
3535
*
3636
* var v = iter.next().value;
3737
* // returns [...]

0 commit comments

Comments
 (0)