Skip to content

Commit 77557f1

Browse files
committed
Fix lint errors
1 parent 211f0c1 commit 77557f1

2 files changed

Lines changed: 2 additions & 10 deletions

File tree

lib/node_modules/@stdlib/math/base/dists/levy/mean/README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,7 @@ for ( i = 0; i < 10; i++ ) {
9797
mu = ( randu()*10.0 ) - 5.0;
9898
c = randu() * 20.0;
9999
y = mean( mu, c );
100-
console.log( 'µ: %d, c: %d, E(X;µ,c): %d',
101-
mu.toFixed( 4 ),
102-
c.toFixed( 4 ),
103-
y.toFixed( 4 )
104-
);
100+
console.log( 'µ: %d, c: %d, E(X;µ,c): %d', mu.toFixed( 4 ), c.toFixed( 4 ), y.toFixed( 4 ) );
105101
}
106102
```
107103

lib/node_modules/@stdlib/math/base/dists/levy/mean/examples/index.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,5 @@ for ( i = 0; i < 10; i++ ) {
1212
mu = ( randu()*10.0 ) - 5.0;
1313
c = randu() * 20.0;
1414
y = mean( mu, c );
15-
console.log( 'µ: %d, c: %d, E(X;µ,c): %d',
16-
mu.toFixed( 4 ),
17-
c.toFixed( 4 ),
18-
y.toFixed( 4 )
19-
);
15+
console.log( 'µ: %d, c: %d, E(X;µ,c): %d', mu.toFixed( 4 ), c.toFixed( 4 ), y.toFixed( 4 ) );
2016
}

0 commit comments

Comments
 (0)