Skip to content

Commit 9bb51dc

Browse files
committed
Fix lint errors
1 parent 4928200 commit 9bb51dc

2 files changed

Lines changed: 2 additions & 10 deletions

File tree

lib/node_modules/@stdlib/math/base/dists/geometric/logcdf/README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,7 @@ for ( i = 0; i < 10; i++ ) {
9595
x = randu() * 5.0;
9696
p = randu();
9797
y = logcdf( x, p );
98-
console.log( 'x: %d, p: %d, ln(F(x;p)): %d',
99-
x.toFixed( 4 ),
100-
p.toFixed( 4 ),
101-
y.toFixed( 4 )
102-
);
98+
console.log( 'x: %d, p: %d, ln(F(x;p)): %d', x.toFixed( 4 ), p.toFixed( 4 ), y.toFixed( 4 ) );
10399
}
104100
```
105101

lib/node_modules/@stdlib/math/base/dists/geometric/logcdf/examples/index.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,5 @@ for ( i = 0; i < 10; i++ ) {
1212
x = randu() * 5.0;
1313
p = randu();
1414
y = logcdf( x, p );
15-
console.log( 'x: %d, p: %d, F(x;p): %d',
16-
x.toFixed( 4 ),
17-
p.toFixed( 4 ),
18-
y.toFixed( 4 )
19-
);
15+
console.log( 'x: %d, p: %d, F(x;p): %d', x.toFixed( 4 ), p.toFixed( 4 ), y.toFixed( 4 ) );
2016
}

0 commit comments

Comments
 (0)