Skip to content

Commit 186e549

Browse files
committed
Fix lint errors
1 parent 0a0e136 commit 186e549

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,7 @@ for ( i = 0; i < 25; i++ ) {
104104
a = ( randu()*20.0 ) - 20.0;
105105
b = a + ( randu()*40.0 );
106106
y = quantile( p, a, b );
107-
console.log( 'p: %d, a: %d, b: %d, Q(p;a,b): %d',
108-
p.toFixed( 4 ),
109-
a.toFixed( 4 ),
110-
b.toFixed( 4 ),
111-
y.toFixed( 4 )
112-
);
107+
console.log( 'p: %d, a: %d, b: %d, Q(p;a,b): %d', p.toFixed( 4 ), a.toFixed( 4 ), b.toFixed( 4 ), y.toFixed( 4 ) );
113108
}
114109
```
115110

lib/node_modules/@stdlib/math/base/dists/arcsine/quantile/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 = quantile( p, a, b );
17-
console.log( 'p: %d, a: %d, b: %d, Q(p;a,b): %d',
18-
p.toFixed( 4 ),
19-
a.toFixed( 4 ),
20-
b.toFixed( 4 ),
21-
y.toFixed( 4 )
22-
);
17+
console.log( 'p: %d, a: %d, b: %d, Q(p;a,b): %d', p.toFixed( 4 ), a.toFixed( 4 ), b.toFixed( 4 ), y.toFixed( 4 ) );
2318
}

0 commit comments

Comments
 (0)