Skip to content

Commit 92d748d

Browse files
committed
Remove whitespace
1 parent bca3797 commit 92d748d

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/node_modules/@stdlib/iter/advance/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ bool = it.next().done;
9393
var array2iterator = require( '@stdlib/array/to-iterator' );
9494

9595
var arr = array2iterator( [ 0, 0, 0, 0, 1 ] );
96-
96+
9797
var i = 0;
9898
var v;
9999
while ( i < 4 ) {

lib/node_modules/@stdlib/iter/incrspace/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ var bool = it.next().done;
125125
126126
// Create an iterator to round each value to the nearest hundredth:
127127
var it2 = iterMap( it1, roundn );
128-
128+
129129
// Perform manual iteration...
130130
var v;
131131
while ( true ) {

lib/node_modules/@stdlib/iter/linspace/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ var bool = it.next().done;
125125
126126
// Create an iterator to round each value to the nearest hundredth:
127127
var it2 = iterMap( it1, roundn );
128-
128+
129129
// Perform manual iteration...
130130
var v;
131131
while ( true ) {

lib/node_modules/@stdlib/iter/step/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ var bool = it.next().done;
125125
126126
// Create an iterator to round each value to the nearest hundredth:
127127
var it2 = iterMap( it1, roundn );
128-
128+
129129
// Perform manual iteration...
130130
var v;
131131
while ( true ) {

0 commit comments

Comments
 (0)