Skip to content

Commit 18ea5a4

Browse files
committed
Fix lint errors
1 parent c6d37e3 commit 18ea5a4

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

lib/node_modules/@stdlib/math/base/dists/laplace/quantile/README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,7 @@ for ( i = 0; i < 100; i++ ) {
111111
mu = randu() * 10.0;
112112
b = randu() * 10.0;
113113
y = quantile( p, mu, b );
114-
console.log( 'p: %d, µ: %d, b: %d, Q(p;µ,b): %d',
115-
p.toFixed( 4 ),
116-
mu.toFixed( 4 ),
117-
b.toFixed( 4 ),
118-
y.toFixed( 4 )
119-
);
114+
console.log( 'p: %d, µ: %d, b: %d, Q(p;µ,b): %d', p.toFixed( 4 ), mu.toFixed( 4 ), b.toFixed( 4 ), y.toFixed( 4 ) );
120115
}
121116
```
122117

lib/node_modules/@stdlib/math/base/dists/laplace/quantile/examples/index.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,5 @@ for ( i = 0; i < 100; i++ ) {
1414
mu = randu() * 10.0;
1515
b = randu() * 10.0;
1616
y = quantile( p, mu, b );
17-
console.log( 'p: %d, µ: %d, b: %d, Q(p;µ,b): %d',
18-
p.toFixed( 4 ),
19-
mu.toFixed( 4 ),
20-
b.toFixed( 4 ),
21-
y.toFixed( 4 )
22-
);
17+
console.log( 'p: %d, µ: %d, b: %d, Q(p;µ,b): %d', p.toFixed( 4 ), mu.toFixed( 4 ), b.toFixed( 4 ), y.toFixed( 4 ) );
2318
}

0 commit comments

Comments
 (0)