Skip to content

Commit 8f1ea70

Browse files
authored
style: fix missing decimal
Signed-off-by: Athan <[email protected]>
1 parent 5efe346 commit 8f1ea70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/planck/mode/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ bench( pkg+'::native', opts, function benchmark( b ) {
4848
len = 100;
4949
lambda = new Float64Array( len );
5050
for ( i = 0; i < len; i++ ) {
51-
lambda[ i ] = uniform( 0.1, 11 );
51+
lambda[ i ] = uniform( 0.1, 11.0 );
5252
}
5353

5454
b.tic();

0 commit comments

Comments
 (0)