Skip to content

Commit 38765a1

Browse files
committed
Fix lint errors
1 parent 05c5056 commit 38765a1

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,7 @@ var i;
8585
for ( i = 0; i < 10; i++ ) {
8686
k = randu() * 20.0;
8787
v = mode( k );
88-
console.log( 'k: %d, mode(X,k): %d',
89-
k.toFixed( 4 ),
90-
v.toFixed( 4 )
91-
);
88+
console.log( 'k: %d, mode(X,k): %d', k.toFixed( 4 ), v.toFixed( 4 ) );
9289
}
9390
```
9491

lib/node_modules/@stdlib/math/base/dists/chi/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)