Skip to content

Commit 2079037

Browse files
authored
chore: code style errors
1 parent 86e7acf commit 2079037

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/betaprime/variance/benchmark/c

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ static double benchmark( void ) {
100100
t = tic();
101101
for ( i = 0; i < ITERATIONS; i++ ) {
102102
alpha = 20.0 * rand_double();
103-
beta = 20 * rand_double() + 2.0;
103+
beta = 20.0 * rand_double() + 2.0;
104104
y = stdlib_base_dists_betaprime_variance( alpha, beta );
105105
if ( y != y ) {
106106
printf( "should not return NaN\n" );

0 commit comments

Comments
 (0)