Skip to content

Commit 725411d

Browse files
committed
Fix lint errors
1 parent 71bb533 commit 725411d

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,7 @@ for ( i = 0; i < 10; i++ ) {
127127
alpha = randu() * 5.0;
128128
beta = randu() * 5.0;
129129
y = cdf( x, alpha, beta );
130-
console.log( 'x: %d, α: %d, β: %d, F(x;α,β): %d',
131-
x.toFixed( 4 ),
132-
alpha.toFixed( 4 ),
133-
beta.toFixed( 4 ),
134-
y.toFixed( 4 )
135-
);
130+
console.log( 'x: %d, α: %d, β: %d, F(x;α,β): %d', x.toFixed( 4 ), alpha.toFixed( 4 ), beta.toFixed( 4 ), y.toFixed( 4 ) );
136131
}
137132
```
138133

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

0 commit comments

Comments
 (0)