Skip to content

Commit e17836c

Browse files
committed
Fix lint errors
1 parent 002035c commit e17836c

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,7 @@ for ( i = 0; i < 10; i++ ) {
132132
a = randu() * 5.0;
133133
b = a + (randu() * 5.0);
134134
v = mgf( t, a, b );
135-
console.log( 't: %d, a: %d, b: %d, M_X(t;a,b): %d',
136-
t.toFixed( 4 ),
137-
a.toFixed( 4 ),
138-
b.toFixed( 4 ),
139-
v.toFixed( 4 )
140-
);
135+
console.log( 't: %d, a: %d, b: %d, M_X(t;a,b): %d', t.toFixed( 4 ), a.toFixed( 4 ), b.toFixed( 4 ), v.toFixed( 4 ) );
141136
}
142137
```
143138

lib/node_modules/@stdlib/math/base/dists/gamma/mgf/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 = mgf( t, alpha, beta );
17-
console.log( 't: %d, α: %d, β: %d, M_X(t;α,β): %d',
18-
t.toFixed( 4 ),
19-
alpha.toFixed( 4 ),
20-
beta.toFixed( 4 ),
21-
y.toFixed( 4 )
22-
);
17+
console.log( 't: %d, α: %d, β: %d, M_X(t;α,β): %d', t.toFixed( 4 ), alpha.toFixed( 4 ), beta.toFixed( 4 ), y.toFixed( 4 ) );
2318
}

0 commit comments

Comments
 (0)