Skip to content

Commit 8f72482

Browse files
committed
Enable lint rule
1 parent e6c9779 commit 8f72482

File tree

12 files changed

+26
-2
lines changed

12 files changed

+26
-2
lines changed

lib/node_modules/@stdlib/math/base/dists/levy/cdf/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ y = mycdf( 2.0 );
8989

9090
## Examples
9191

92+
<!-- eslint no-undef: "error" -->
93+
9294
```javascript
9395
var randu = require( '@stdlib/random/base/randu' );
9496
var EPS = require( '@stdlib/constants/math/float64-eps' );
@@ -105,7 +107,7 @@ for ( i = 0; i < 100; i++ ) {
105107
x = ( randu()*10.0 ) + mu;
106108
c = ( randu()*10.0 ) + EPS;
107109
y = cdf( x, mu, c );
108-
console.log( 'x: %d, µ: %d, c: %d, F(x;µ,c): %d', x.toFixed( 4 ), mu.toFixed( 4 ), b.toFixed( 4 ), y.toFixed( 4 ) );
110+
console.log( 'x: %d, µ: %d, c: %d, F(x;µ,c): %d', x.toFixed( 4 ), mu.toFixed( 4 ), c.toFixed( 4 ), y.toFixed( 4 ) );
109111
}
110112
```
111113

lib/node_modules/@stdlib/math/base/dists/levy/ctor/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,8 @@ y = quantile( 1.9 );
232232

233233
## Examples
234234

235+
<!-- eslint no-undef: "error" -->
236+
235237
```javascript
236238
var Levy = require( '@stdlib/math/base/dists/levy/ctor' );
237239

lib/node_modules/@stdlib/math/base/dists/levy/entropy/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ y = entropy( 0.0, -1.0 );
8686

8787
## Examples
8888

89+
<!-- eslint no-undef: "error" -->
90+
8991
```javascript
9092
var randu = require( '@stdlib/random/base/randu' );
9193
var entropy = require( '@stdlib/math/base/dists/levy/entropy' );

lib/node_modules/@stdlib/math/base/dists/levy/logcdf/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ y = mylogcdf( 2.0 );
8989

9090
## Examples
9191

92+
<!-- eslint no-undef: "error" -->
93+
9294
```javascript
9395
var randu = require( '@stdlib/random/base/randu' );
9496
var EPS = require( '@stdlib/constants/math/float64-eps' );
@@ -105,7 +107,7 @@ for ( i = 0; i < 100; i++ ) {
105107
x = ( randu()*10.0 ) + mu;
106108
c = ( randu()*10.0 ) + EPS;
107109
y = logcdf( x, mu, c );
108-
console.log( 'x: %d, µ: %d, c: %d, ln(F(x;µ,c)): %d', x.toFixed( 4 ), mu.toFixed( 4 ), b.toFixed( 4 ), y.toFixed( 4 ) );
110+
console.log( 'x: %d, µ: %d, c: %d, ln(F(x;µ,c)): %d', x.toFixed( 4 ), mu.toFixed( 4 ), c.toFixed( 4 ), y.toFixed( 4 ) );
109111
}
110112
```
111113

lib/node_modules/@stdlib/math/base/dists/levy/logpdf/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ y = mylogpdf( 20.0 );
8686

8787
## Examples
8888

89+
<!-- eslint no-undef: "error" -->
90+
8991
```javascript
9092
var randu = require( '@stdlib/random/base/randu' );
9193
var EPS = require( '@stdlib/constants/math/float64-eps' );

lib/node_modules/@stdlib/math/base/dists/levy/mean/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ y = mean( 0.0, -1.0 );
8484

8585
## Examples
8686

87+
<!-- eslint no-undef: "error" -->
88+
8789
```javascript
8890
var randu = require( '@stdlib/random/base/randu' );
8991
var mean = require( '@stdlib/math/base/dists/levy/mean' );

lib/node_modules/@stdlib/math/base/dists/levy/median/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ y = median( 0.0, -1.0 );
8484

8585
## Examples
8686

87+
<!-- eslint no-undef: "error" -->
88+
8789
```javascript
8890
var randu = require( '@stdlib/random/base/randu' );
8991
var median = require( '@stdlib/math/base/dists/levy/median' );

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ y = mode( 0.0, -1.0 );
8484

8585
## Examples
8686

87+
<!-- eslint no-undef: "error" -->
88+
8789
```javascript
8890
var randu = require( '@stdlib/random/base/randu' );
8991
var mode = require( '@stdlib/math/base/dists/levy/mode' );

lib/node_modules/@stdlib/math/base/dists/levy/pdf/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ y = mypdf( 20.0 );
8686

8787
## Examples
8888

89+
<!-- eslint no-undef: "error" -->
90+
8991
```javascript
9092
var randu = require( '@stdlib/random/base/randu' );
9193
var EPS = require( '@stdlib/constants/math/float64-eps' );

lib/node_modules/@stdlib/math/base/dists/levy/quantile/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ y = myQuantile( 0.8 );
9696

9797
## Examples
9898

99+
<!-- eslint no-undef: "error" -->
100+
99101
```javascript
100102
var randu = require( '@stdlib/random/base/randu' );
101103
var quantile = require( '@stdlib/math/base/dists/levy/quantile' );

0 commit comments

Comments
 (0)