Skip to content

Commit 9d30c2f

Browse files
committed
chore: make another attempt to solve lint error
1 parent ddbb8be commit 9d30c2f

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/incr/nanmmaxabs

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/incr/nanmmaxabs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ var accumulator = incrnanmmaxabs( 5 );
104104
// For each simulated datum, update the moving maximum absolute value...
105105
var i;
106106
for ( i = 0; i < 100; i++ ) {
107-
accumulator( ( bernoulli( 0.8 ) < 1 ) ? NaN : uniform( -100.0, 100.0 ) );
107+
accumulator( ( bernoulli( 0.8 ) < 1 ) ? NaN : uniform( -100.0, 100.0 ) );
108108
}
109109
console.log( accumulator() );
110110
```

0 commit comments

Comments
 (0)