Skip to content

Commit e3010bb

Browse files
committed
Fix lint errors
1 parent 1cb1939 commit e3010bb

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,7 @@ for ( i = 0; i < 100; i++ ) {
114114
mu = randu() * 10.0;
115115
beta = randu() * 10.0;
116116
y = quantile( p, mu, beta );
117-
console.log( 'p: %d, µ: %d, β: %d, Q(p;µ,β): %d',
118-
p.toFixed( 4 ),
119-
mu.toFixed( 4 ),
120-
beta.toFixed( 4 ),
121-
y.toFixed( 4 )
122-
);
117+
console.log( 'p: %d, µ: %d, β: %d, Q(p;µ,β): %d', p.toFixed( 4 ), mu.toFixed( 4 ), beta.toFixed( 4 ), y.toFixed( 4 ) );
123118
}
124119
```
125120

lib/node_modules/@stdlib/math/base/dists/gumbel/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
beta = randu() * 10.0;
1616
y = quantile( p, mu, beta );
17-
console.log( 'p: %d, µ: %d, β: %d, Q(p;µ,β): %d',
18-
p.toFixed( 4 ),
19-
mu.toFixed( 4 ),
20-
beta.toFixed( 4 ),
21-
y.toFixed( 4 )
22-
);
17+
console.log( 'p: %d, µ: %d, β: %d, Q(p;µ,β): %d', p.toFixed( 4 ), mu.toFixed( 4 ), beta.toFixed( 4 ), y.toFixed( 4 ) );
2318
}

0 commit comments

Comments
 (0)