Skip to content

Commit 5984ad7

Browse files
committed
Fix lint errors
1 parent a923bf9 commit 5984ad7

2 files changed

Lines changed: 2 additions & 10 deletions

File tree

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,7 @@ for ( i = 0; i < 10; i++ ) {
111111
r = randu();
112112
p = randu();
113113
y = quantile( r, p );
114-
console.log( 'r: %d, p: %d, Q(r;p): %d',
115-
r.toFixed( 4 ),
116-
p.toFixed( 4 ),
117-
y.toFixed( 4 )
118-
);
114+
console.log( 'r: %d, p: %d, Q(r;p): %d', r.toFixed( 4 ), p.toFixed( 4 ), y.toFixed( 4 ) );
119115
}
120116
```
121117

lib/node_modules/@stdlib/math/base/dists/geometric/quantile/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
r = randu();
1313
p = randu();
1414
y = quantile( r, p );
15-
console.log( 'r: %d, p: %d, Q(r;p): %d',
16-
r.toFixed( 4 ),
17-
p.toFixed( 4 ),
18-
y.toFixed( 4 )
19-
);
15+
console.log( 'r: %d, p: %d, Q(r;p): %d', r.toFixed( 4 ), p.toFixed( 4 ), y.toFixed( 4 ) );
2016
}

0 commit comments

Comments
 (0)