Skip to content

Commit 4928200

Browse files
committed
Fix lint errors
1 parent 65b0f0a commit 4928200

2 files changed

Lines changed: 2 additions & 10 deletions

File tree

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,7 @@ for ( i = 0; i < 10; i++ ) {
9999
x = round( randu() * 5.0 );
100100
p = randu();
101101
y = logpmf( x, p );
102-
console.log( 'x: %d, p: %d, ln( P( X = x; p ) ): %d',
103-
x,
104-
p.toFixed( 4 ),
105-
y.toFixed( 4 )
106-
);
102+
console.log( 'x: %d, p: %d, ln( P( X = x; p ) ): %d', x, p.toFixed( 4 ), y.toFixed( 4 ) );
107103
}
108104
```
109105

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,5 @@ for ( i = 0; i < 10; i++ ) {
1313
x = round( randu() * 5.0 );
1414
p = randu();
1515
y = logpmf( x, p );
16-
console.log( 'x: %d, p: %d, ln( P( X = x; p ) ): %d',
17-
x,
18-
p.toFixed( 4 ),
19-
y.toFixed( 4 )
20-
);
16+
console.log( 'x: %d, p: %d, ln( P( X = x; p ) ): %d', x, p.toFixed( 4 ), y.toFixed( 4 ) );
2117
}

0 commit comments

Comments
 (0)