Skip to content

Commit d6a5567

Browse files
committed
fix(logpdf): apply space-infix-ops eslint rule to modulo expressions
1 parent c7c815d commit d6a5567

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/lognormal/logpdf/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ bench( format( '%s::native', pkg ), opts, function benchmark( b ) {
5858
len = x.length;
5959
b.tic();
6060
for ( i = 0; i < b.iterations; i++ ) {
61-
y = logpdf( x[ i%len ], mu[ i%len ], sigma[ i%len ] );
61+
y = logpdf( x[ i % len ], mu[ i % len ], sigma[ i % len ] );
6262
if ( isnan( y ) ) {
6363
b.fail( 'should not return NaN' );
6464
}

0 commit comments

Comments
 (0)