Skip to content

Commit 8af873c

Browse files
fix: lint error
1 parent 7b3f845 commit 8af873c

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ var dsnanmeanpn = require( '@stdlib/stats/base/dsnanmeanpn' ).ndarray;
3838
* var Float32Array = require( '@stdlib/array/float32' );
3939
*
4040
* var x = new Float32Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN ] );
41-
*
42-
* var v = dsnanmean( 5, x, 2, 1 );
43-
* // returns 1.25
4441
*/
4542
function dsnanmean( N, x, strideX, offsetX ) {
4643
return dsnanmeanpn( N, x, strideX, offsetX );

lib/node_modules/@stdlib/stats/base/dsnanmean/lib/ndarray.native.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ var addon = require( './../src/addon.node' );
3838
* var Float32Array = require( '@stdlib/array/float32' );
3939
*
4040
* var x = new Float32Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN ] );
41-
*
42-
* var v = dsnanmean( 5, x, 2, 1 );
43-
* // returns 1.25
4441
*/
4542
function dsnanmean( N, x, strideX, offsetX ) {
4643
return addon.ndarray( N, x, strideX, offsetX );

lib/node_modules/@stdlib/stats/base/dsnanmean/src/addon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2020 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/stats/base/dsnanmean/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2020 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)