Skip to content

Commit 71ad4a5

Browse files
committed
chore: fix lint issue
1 parent 16e6b04 commit 71ad4a5

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/triangular/ctor/benchmark/benchmark.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
/**
32
* @license Apache-2.0
43
*
@@ -19,7 +18,6 @@
1918

2019
'use strict';
2120

22-
2321
// MODULES //
2422

2523
var bench = require( '@stdlib/bench' );

lib/node_modules/@stdlib/stats/base/dists/triangular/mean/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ bench( pkg, function benchmark( b ) {
4545
for ( i = 0; i < len; i++ ) {
4646
a[ i ] = uniform(0.0 , 20.0);
4747
bnd[ i ] = uniform(a[ i ] , 20.0 + a[ i ]);
48-
c[ i ] = uniform( a[ i ], bnd[ i ] );
48+
c[ i ] = uniform( a[ i ], bnd[ i ] );
4949
}
5050

5151
b.tic();

lib/node_modules/@stdlib/stats/base/dists/triangular/mean/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ bench( pkg+'::native', opts, function benchmark( b ) {
5454
for ( i = 0; i < len; i++ ) {
5555
a[ i ] = uniform(0.0 , 20.0);
5656
bnd[ i ] = uniform(a[ i ] , 20.0 + a[ i ]);
57-
c[ i ] = uniform( a[ i ], bnd[ i ] );
57+
c[ i ] = uniform( a[ i ], bnd[ i ] );
5858
}
5959

6060
b.tic();

0 commit comments

Comments
 (0)