Skip to content

Commit cc3a75a

Browse files
committed
Fix lint errors
1 parent 207cc36 commit cc3a75a

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,7 @@ var i;
8282
for ( i = 0; i < 10; i++ ) {
8383
k = randu() * 20.0;
8484
v = mode( k );
85-
console.log( 'k: %d, mode(X,k): %d',
86-
k.toFixed( 4 ),
87-
v.toFixed( 4 )
88-
);
85+
console.log( 'k: %d, mode(X,k): %d', k.toFixed( 4 ), v.toFixed( 4 ) );
8986
}
9087
```
9188

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ var v;
1010
for ( i = 0; i < 10; i++ ) {
1111
k = randu() * 20.0;
1212
v = mode( k );
13-
console.log( 'k: %d, mode(X;k): %d',
14-
k.toFixed( 4 ),
15-
v.toFixed( 4 )
16-
);
13+
console.log( 'k: %d, mode(X;k): %d', k.toFixed( 4 ), v.toFixed( 4 ) );
1714
}
1815

0 commit comments

Comments
 (0)