Skip to content

Commit fa46e00

Browse files
fix: lint errors
1 parent c537a29 commit fa46e00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/betaprime/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
}
5555
beta = new Float64Array( len );
5656
for ( i = 0; i < len; i++ ) {
57-
beta[ i ] = uniform( 1.0 + EPS, 11.0 );;
57+
beta[ i ] = uniform( 1.0 + EPS, 11.0 );
5858
}
5959

6060
b.tic();

lib/node_modules/@stdlib/stats/base/dists/betaprime/mean/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ int main( void ) {
129129
double elapsed;
130130
int i;
131131

132-
// Use the current time to seed the random number generator:
132+
// Use the current time to seed the random number generator:
133133
srand( time( NULL ) );
134134

135135
print_version();

0 commit comments

Comments
 (0)