Skip to content

Commit fe0eb46

Browse files
committed
fixed ESLint issue
1 parent 5abe810 commit fe0eb46

File tree

1 file changed

+2
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/variancewd/lib

1 file changed

+2
-1
lines changed

lib/node_modules/@stdlib/stats/base/variancewd/lib/accessors.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* accessors: [ accessor ]
4444
* };
4545
* var v = variancewd( x.data.length, 1, x, 1, 0 );
46-
* // returns 1
46+
* // returns 1.0
4747
*/
4848
function variancewd( N, correction, x, strideX, offsetX ) {
4949
var delta2;
@@ -87,6 +87,7 @@ function variancewd( N, correction, x, strideX, offsetX ) {
8787
return M2 / n;
8888
}
8989

90+
9091
// EXPORTS //
9192

9293
module.exports = variancewd;

0 commit comments

Comments
 (0)