Skip to content

Commit 03c856b

Browse files
committed
Fix lint errors
1 parent 0960847 commit 03c856b

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

lib/node_modules/@stdlib/math/base/dists/frechet/mode/README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,7 @@ for ( i = 0; i < 10; i++ ) {
113113
s = ( randu()*20.0 ) + EPS;
114114
m = ( randu()*20.0 ) - 40.0;
115115
y = mode( alpha, s, m );
116-
console.log( 'α: %d, s: %d, m: %d, mode(X;α,s,m): %d',
117-
alpha.toFixed( 4 ),
118-
s.toFixed( 4 ),
119-
m.toFixed( 4 ),
120-
y.toFixed( 4 )
121-
);
116+
console.log( 'α: %d, s: %d, m: %d, mode(X;α,s,m): %d', alpha.toFixed( 4 ), s.toFixed( 4 ), m.toFixed( 4 ), y.toFixed( 4 ) );
122117
}
123118
```
124119

lib/node_modules/@stdlib/math/base/dists/frechet/mode/examples/index.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,5 @@ for ( i = 0; i < 10; i++ ) {
1515
s = ( randu()*20.0 ) + EPS;
1616
m = ( randu()*20.0 ) - 40.0;
1717
y = mode( alpha, s, m );
18-
console.log( 'α: %d, s: %d, m: %d, mode(X;α,s,m): %d',
19-
alpha.toFixed( 4 ),
20-
s.toFixed( 4 ),
21-
m.toFixed( 4 ),
22-
y.toFixed( 4 )
23-
);
18+
console.log( 'α: %d, s: %d, m: %d, mode(X;α,s,m): %d', alpha.toFixed( 4 ), s.toFixed( 4 ), m.toFixed( 4 ), y.toFixed( 4 ) );
2419
}

0 commit comments

Comments
 (0)