Skip to content

Commit 48bef6d

Browse files
fix: lint error
1 parent 59cbb55 commit 48bef6d

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

lib/node_modules/@stdlib/stats/base/dnanmeanors/lib/dnanmeanors.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var addon = require( './../src/addon.node' );
3939
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
4040
* var N = x.length;
4141
*
42-
* var v = dnanmeanors( 5, x, 1 );
42+
* var v = dnanmeanors( x.length, x, 1 );
4343
* // returns ~0.3333
4444
*/
4545
function dnanmeanors( N, x, strideX ) {

lib/node_modules/@stdlib/stats/base/dnanmeanors/lib/ndarray.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@
3434
*
3535
* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN ] );
3636
*
37-
* var v = dnanmeanors( 5, x, 2, 1 );
38-
* // returns 1.25
3937
*/
4038
function dnanmeanors( N, x, strideX, offsetX ) {
4139
var ix;

0 commit comments

Comments
 (0)