Skip to content

Commit f3692b3

Browse files
authored
fix: resolves lint issues
Signed-off-by: Harsh <149176984+hrshya@users.noreply.github.com>
1 parent 54c0ebf commit f3692b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/node_modules/@stdlib/stats/base/dists/pareto-type1/mean/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ bench( pkg+'::native', opts, function benchmark( b ) {
5353

5454
b.tic();
5555
for ( i = 0; i < b.iterations; i++ ) {
56-
y = mean( alpha[ i % len ], beta[ i % len ] );
56+
y = mean( alpha[ i % alpha.length ], beta[ i % beta.length ] );
5757
if ( isnan( y ) ) {
5858
b.fail( 'should not return NaN' );
5959
}

0 commit comments

Comments
 (0)