Skip to content

Commit 837a341

Browse files
committed
fix: resolves lint issues
1 parent 9949a47 commit 837a341

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

lib/node_modules/@stdlib/math/base/special/besselj0/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ var besselj0 = require( '@stdlib/math/base/special/besselj0' );
9090
var x;
9191

9292
x = uniform( 100, 0.0, 100.0, {
93-
'dtype': 'float64'
93+
'dtype': 'float64'
9494
});
9595

9696
logEachMap( 'besselj0(%0.4f) = %0.4f', x, besselj0 );

lib/node_modules/@stdlib/math/base/special/besselj1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ var besselj1 = require( '@stdlib/math/base/special/besselj1' );
9090
var x;
9191

9292
x = uniform( 100, 0.0, 100.0, {
93-
'dtype': 'float64'
93+
'dtype': 'float64'
9494
});
9595

9696
logEachMap( 'besselj1(%0.4f) = %0.4f', x, besselj1 );

lib/node_modules/@stdlib/math/base/special/bessely0/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ var bessely0 = require( '@stdlib/math/base/special/bessely0' );
9797
var x;
9898

9999
x = uniform( 100, 0.0, 100.0, {
100-
'dtype': 'float64'
100+
'dtype': 'float64'
101101
});
102102

103103
logEachMap( 'bessely0(%0.4f) = %0.4f', x, bessely0 );

lib/node_modules/@stdlib/math/base/special/bessely1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ var bessely1 = require( '@stdlib/math/base/special/bessely1' );
9898
var x;
9999

100100
x = uniform( 100, 0.0, 100.0, {
101-
'dtype': 'float64'
101+
'dtype': 'float64'
102102
});
103103

104104
logEachMap( 'bessely1(%0.4f) = %0.4f', x, bessely1 );

lib/node_modules/@stdlib/math/base/special/betainc/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,13 @@ var a;
111111
var b;
112112

113113
x = uniform( 100, 0.0, 1.0, {
114-
'dtype': 'float64'
114+
'dtype': 'float64'
115115
});
116116
a = uniform( 100, 0.0, 10.0, {
117-
'dtype': 'float64'
117+
'dtype': 'float64'
118118
});
119119
b = uniform( 100, 0.0, 10.0, {
120-
'dtype': 'float64'
120+
'dtype': 'float64'
121121
});
122122

123123
logEachMap( 'x: %0.4f, \t a: %0.4f, \t b: %0.4f, \t f(x,a,b): %0.4f', x, a, b, betainc );

lib/node_modules/@stdlib/math/base/special/betaincinv/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,13 @@ var a;
120120
var b;
121121

122122
p = uniform( 100, 0.0, 1.0, {
123-
'dtype': 'float64'
123+
'dtype': 'float64'
124124
});
125125
a = uniform( 100, 0.0, 10.0, {
126-
'dtype': 'float64'
126+
'dtype': 'float64'
127127
});
128128
b = uniform( 100, 0.0, 10.0, {
129-
'dtype': 'float64'
129+
'dtype': 'float64'
130130
});
131131

132132
logEachMap( 'p: %0.4f, \t a: %0.4f, \t b: %0.4f, \t f(p,a,b): %0.4f', p, a, b, betaincinv );

0 commit comments

Comments
 (0)