Skip to content

Commit ca61baa

Browse files
committed
Fix lint errors
1 parent 88f7ad6 commit ca61baa

2 files changed

Lines changed: 2 additions & 10 deletions

File tree

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,7 @@ for ( i = 0; i < 10; i++ ) {
9797
mu = ( randu()*10.0 ) - 5.0;
9898
s = randu() * 20.0;
9999
y = mode( mu, s );
100-
console.log( 'µ: %d, s: %d, mode(X;µ,s): %d',
101-
mu.toFixed( 4 ),
102-
s.toFixed( 4 ),
103-
y.toFixed( 4 )
104-
);
100+
console.log( 'µ: %d, s: %d, mode(X;µ,s): %d', mu.toFixed( 4 ), s.toFixed( 4 ), y.toFixed( 4 ) );
105101
}
106102
```
107103

lib/node_modules/@stdlib/math/base/dists/cosine/mode/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
mu = ( randu()*10.0 ) - 5.0;
1313
s = randu() * 20.0;
1414
y = mode( mu, s );
15-
console.log( 'µ: %d, s: %d, mode(X;µ,s): %d',
16-
mu.toFixed( 4 ),
17-
s.toFixed( 4 ),
18-
y.toFixed( 4 )
19-
);
15+
console.log( 'µ: %d, s: %d, mode(X;µ,s): %d', mu.toFixed( 4 ), s.toFixed( 4 ), y.toFixed( 4 ) );
2016
}

0 commit comments

Comments
 (0)