Skip to content

Commit cd642af

Browse files
committed
Fix lint errors
1 parent 6ec9b0a commit cd642af

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,7 @@ for ( i = 0; i < 10; i++ ) {
122122
s = ( randu()*20.0 ) + EPS;
123123
m = ( randu()*20.0 ) - 40.0;
124124
y = skewness( alpha, s, m );
125-
console.log( 'α: %d, s: %d, m: %d, skew(X;α,s,m): %d',
126-
alpha.toFixed( 4 ),
127-
s.toFixed( 4 ),
128-
m.toFixed( 4 ),
129-
y.toFixed( 4 )
130-
);
125+
console.log( 'α: %d, s: %d, m: %d, skew(X;α,s,m): %d', alpha.toFixed( 4 ), s.toFixed( 4 ), m.toFixed( 4 ), y.toFixed( 4 ) );
131126
}
132127
```
133128

lib/node_modules/@stdlib/math/base/dists/frechet/skewness/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 = skewness( alpha, s, m );
18-
console.log( 'α: %d, s: %d, m: %d, skew(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, skew(X;α,s,m): %d', alpha.toFixed( 4 ), s.toFixed( 4 ), m.toFixed( 4 ), y.toFixed( 4 ) );
2419
}

0 commit comments

Comments
 (0)