Skip to content

Commit 8214b03

Browse files
committed
Fix lint errors
1 parent c0c2d94 commit 8214b03

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,7 @@ for ( i = 0; i < 25; i++ ) {
103103
a = ( randu()*20.0 ) - 20.0;
104104
b = a + ( randu()*40.0 );
105105
y = logcdf( x, a, b );
106-
console.log( 'x: %d, a: %d, b: %d, ln(F(x;a,b)): %d',
107-
x.toFixed( 4 ),
108-
a.toFixed( 4 ),
109-
b.toFixed( 4 ),
110-
y.toFixed( 4 )
111-
);
106+
console.log( 'x: %d, a: %d, b: %d, ln(F(x;a,b)): %d', x.toFixed( 4 ), a.toFixed( 4 ), b.toFixed( 4 ), y.toFixed( 4 ) );
112107
}
113108
```
114109

lib/node_modules/@stdlib/math/base/dists/arcsine/logcdf/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 < 25; i++ ) {
1414
a = ( randu()*20.0 ) - 20.0;
1515
b = a + ( randu()*40.0 );
1616
y = logcdf( x, a, b );
17-
console.log( 'x: %d, a: %d, b: %d, ln(F(x;a,b)): %d',
18-
x.toFixed( 4 ),
19-
a.toFixed( 4 ),
20-
b.toFixed( 4 ),
21-
y.toFixed( 4 )
22-
);
17+
console.log( 'x: %d, a: %d, b: %d, ln(F(x;a,b)): %d', x.toFixed( 4 ), a.toFixed( 4 ), b.toFixed( 4 ), y.toFixed( 4 ) );
2318
}

0 commit comments

Comments
 (0)