Skip to content

Commit 7580a5f

Browse files
committed
Fix lint errors
1 parent 25d1839 commit 7580a5f

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,7 @@ for ( i = 0; i < 100; i++ ) {
105105
x = ( randu()*10.0 ) + mu;
106106
c = ( randu()*10.0 ) + EPS;
107107
y = cdf( x, mu, c );
108-
console.log( 'x: %d, µ: %d, c: %d, F(x;µ,c): %d',
109-
x.toFixed( 4 ),
110-
mu.toFixed( 4 ),
111-
b.toFixed( 4 ),
112-
y.toFixed( 4 )
113-
);
108+
console.log( 'x: %d, µ: %d, c: %d, F(x;µ,c): %d', x.toFixed( 4 ), mu.toFixed( 4 ), b.toFixed( 4 ), y.toFixed( 4 ) );
114109
}
115110
```
116111

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,5 @@ for ( i = 0; i < 100; i++ ) {
1515
x = ( randu()*10.0 ) + mu;
1616
c = ( randu()*10.0 ) + EPS;
1717
y = cdf( x, mu, c );
18-
console.log( 'x: %d, µ: %d, c: %d, F(x;µ,c): %d',
19-
x.toFixed( 4 ),
20-
mu.toFixed( 4 ),
21-
c.toFixed( 4 ),
22-
y.toFixed( 4 )
23-
);
18+
console.log( 'x: %d, µ: %d, c: %d, F(x;µ,c): %d', x.toFixed( 4 ), mu.toFixed( 4 ), c.toFixed( 4 ), y.toFixed( 4 ) );
2419
}

0 commit comments

Comments
 (0)