Skip to content

Commit 2cc3527

Browse files
Sachin PangalSachin Pangal
authored andcommitted
fixed-lint
1 parent a45797c commit 2cc3527

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

lib/node_modules/@stdlib/stats/base/ndarray/meanpn/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ The [arithmetic mean][arithmetic-mean] is defined as
3333
```
3434

3535
<!-- <div class="equation" align="center" data-raw-text="\mu = \frac{1}{n} \sum_{i=0}^{n-1} x_i" data-equation="eq:arithmetic_mean">
36-
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@develop/lib/node_modules/%40stdlib/stats/base/ndarray/meanpn/docs/img/equation_arithmetic_mean.svg" alt="Equation for the arithmetic mean.">
37-
<br>
36+
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@develop/lib/node_modules/%40stdlib/stats/base/ndarray/meanpn/docs/img/equation_arithmetic_mean.svg" alt="Equation for the arithmetic mean.">
37+
<br>
3838
</div> -->
3939

4040
<!-- </equation> -->
@@ -97,7 +97,7 @@ var ndarray2array = require( '@stdlib/ndarray/to-array' );
9797
var meanpn = require( '@stdlib/stats/base/ndarray/meanpn' );
9898

9999
var xbuf = discreteUniform( 10, -50, 50, {
100-
'dtype': 'generic'
100+
'dtype': 'generic'
101101
});
102102
var x = new ndarray( 'generic', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );
103103
console.log( ndarray2array( x ) );

lib/node_modules/@stdlib/stats/base/ndarray/meanpn/lib/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838

3939
var main = require( './main.js' );
4040

41-
4241
// EXPORTS //
4342

4443
module.exports = main;

0 commit comments

Comments
 (0)