Skip to content

Commit e061845

Browse files
committed
Fix lint errors
1 parent 9239b2f commit e061845

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,7 @@ for ( i = 0; i < 20; i++ ) {
124124
alpha = randu() * 5.0;
125125
beta = randu() * 5.0;
126126
y = quantile( p, alpha, beta );
127-
console.log( 'p: %d, α: %d, β: %d, Q(p;α,β): %d',
128-
p.toFixed( 4 ),
129-
alpha.toFixed( 4 ),
130-
beta.toFixed( 4 ),
131-
y.toFixed( 4 )
132-
);
127+
console.log( 'p: %d, α: %d, β: %d, Q(p;α,β): %d', p.toFixed( 4 ), alpha.toFixed( 4 ), beta.toFixed( 4 ), y.toFixed( 4 ) );
133128
}
134129
```
135130

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

0 commit comments

Comments
 (0)