Skip to content

Commit 529c7ad

Browse files
committed
Fix lint errors
1 parent 70acdbd commit 529c7ad

2 files changed

Lines changed: 2 additions & 10 deletions

File tree

lib/node_modules/@stdlib/math/base/dists/gumbel/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
beta = randu() * 20.0;
101101
y = entropy( mu, beta );
102-
console.log( 'µ: %d, β: %d, h(X;µ,β): %d',
103-
mu.toFixed( 4 ),
104-
beta.toFixed( 4 ),
105-
y.toFixed( 4 )
106-
);
102+
console.log( 'µ: %d, β: %d, h(X;µ,β): %d', mu.toFixed( 4 ), beta.toFixed( 4 ), y.toFixed( 4 ) );
107103
}
108104
```
109105

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

0 commit comments

Comments
 (0)