Skip to content

Commit 883203f

Browse files
fix: lint error
1 parent 9aa89ec commit 883203f

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/stats/base/dsnanmeanpn/examples

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/stats/base/dsnanmeanpn/examples/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ var i;
2828

2929
x = new Float32Array( 10 );
3030
for ( i = 0; i < x.length; i++ ) {
31-
if ( randu() < 0.2 ) {
32-
x[ i ] = NaN;
33-
} else {
34-
x[ i ] = round( (randu()*100.0) - 50.0 );
35-
}
31+
if ( randu() < 0.2 ) {
32+
x[ i ] = NaN;
33+
} else {
34+
x[ i ] = round( (randu()*100.0) - 50.0 );
35+
}
3636
}
3737
console.log( x );
3838

0 commit comments

Comments
 (0)