Skip to content

Commit e6c5993

Browse files
committed
spaces
1 parent 36d8b5f commit e6c5993

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/incr/nanprod/test

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/incr/nanprod/test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tape( 'the accumulator function incrementally computes a product (special series
114114
} else {
115115
acc( 1.0/x );
116116
}
117-
if ( i % 10 === 0 ){
117+
if ( i % 10 === 0 ) {
118118
acc( NaN );
119119
}
120120
}
@@ -315,7 +315,7 @@ tape( 'if provided values of normal magnitude (i.e., far away from the extremes)
315315
prod = 1.0;
316316
for ( i = 0; i < 1000; i++ ) {
317317
r = randn();
318-
if ( isnan( r ) ){
318+
if ( isnan( r ) ) {
319319
continue;
320320
}
321321
acc( r );

0 commit comments

Comments
 (0)