Skip to content

Commit a961998

Browse files
committed
Fix lint errors
1 parent 1152dd8 commit a961998

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

lib/node_modules/@stdlib/math/base/dists/invgamma/pdf/README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,7 @@ for ( i = 0; i < 10; i++ ) {
111111
alpha = randu() * 5.0;
112112
beta = randu() * 5.0;
113113
y = pdf( x, alpha, beta );
114-
console.log( 'x: %d, α: %d, β: %d, f(x;α,β): %d',
115-
x.toFixed( 4 ),
116-
alpha.toFixed( 4 ),
117-
beta.toFixed( 4 ),
118-
y.toFixed( 4 )
119-
);
114+
console.log( 'x: %d, α: %d, β: %d, f(x;α,β): %d', x.toFixed( 4 ), alpha.toFixed( 4 ), beta.toFixed( 4 ), y.toFixed( 4 ) );
120115
}
121116
```
122117

lib/node_modules/@stdlib/math/base/dists/invgamma/pdf/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 = pdf( 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)