Skip to content

Commit 491feb6

Browse files
committed
chore: fix lint errors
1 parent 717bdbb commit 491feb6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/node_modules/@stdlib/stats/incr/nanvmr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ D = accumulator( 1.0 ); // => s^2 = ((2-1.5)^2+(1-1.5)^2) / (2-1)
9696
D = accumulator( 3.0 ); // => s^2 = ((2-2)^2+(1-2)^2+(3-2)^2) / (3-1)
9797
// returns 0.5
9898

99-
D = accumulator( NaN )
99+
D = accumulator( NaN );
100100
// returns 0.5
101101

102102
D = accumulator();

lib/node_modules/@stdlib/stats/incr/nanvmr/lib/main.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var isnan = require( '@stdlib/math/base/assert/is-nan' );
24-
var incrvmr = require('@stdlib/stats/incr/vmr');
24+
var incrvmr = require( '@stdlib/stats/incr/vmr' );
2525

2626

2727
// MAIN //
@@ -72,7 +72,6 @@ function incrnanvmr( mean ) {
7272
return vmr( x );
7373
}
7474
}
75-
7675

7776
// EXPORTS //
7877

0 commit comments

Comments
 (0)