Skip to content

Commit 25d1839

Browse files
committed
Fix lint errors
1 parent 1e4d113 commit 25d1839

2 files changed

Lines changed: 2 additions & 10 deletions

File tree

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,7 @@ for ( i = 0; i < 10; i++ ) {
9999
mu = ( randu()*10.0 ) - 5.0;
100100
c = randu() * 20.0;
101101
y = entropy( mu, c );
102-
console.log( 'µ: %d, c: %d, h(X;µ,c): %d',
103-
mu.toFixed( 4 ),
104-
c.toFixed( 4 ),
105-
y.toFixed( 4 )
106-
);
102+
console.log( 'µ: %d, c: %d, h(X;µ,c): %d', mu.toFixed( 4 ), c.toFixed( 4 ), y.toFixed( 4 ) );
107103
}
108104
```
109105

lib/node_modules/@stdlib/math/base/dists/levy/entropy/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 = entropy( mu, c );
15-
console.log( 'µ: %d, c: %d, h(X;µ,c): %d',
16-
mu.toFixed( 4 ),
17-
c.toFixed( 4 ),
18-
y.toFixed( 4 )
19-
);
15+
console.log( 'µ: %d, c: %d, h(X;µ,c): %d', mu.toFixed( 4 ), c.toFixed( 4 ), y.toFixed( 4 ) );
2016
}

0 commit comments

Comments
 (0)