Skip to content

Commit 6047f42

Browse files
committed
resolves indentation issues
1 parent b9eb633 commit 6047f42

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/math/base/special/besselj0/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var logEachMap = require( '@stdlib/console/log-each-map' );
2323
var besselj0 = require( './../lib' );
2424

2525
var opts = {
26-
'dtype': 'float64'
26+
'dtype': 'float64'
2727
};
2828
var x = uniform( 100, 0.0, 100.0, opts );
2929

lib/node_modules/@stdlib/math/base/special/bessely1/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var logEachMap = require( '@stdlib/console/log-each-map' );
2323
var bessely1 = require( './../lib' );
2424

2525
var opts = {
26-
'dtype': 'float64'
26+
'dtype': 'float64'
2727
};
2828
var x = uniform( 100, 0.0, 100.0, opts );
2929

lib/node_modules/@stdlib/math/base/special/betainc/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var logEachMap = require( '@stdlib/console/log-each-map' );
2323
var betainc = require( './../lib' );
2424

2525
var opts = {
26-
'dtype': 'float64'
26+
'dtype': 'float64'
2727
};
2828
var x = uniform( 100, 0.0, 1.0, opts );
2929
var a = uniform( 100, 0.0, 10.0, opts );

lib/node_modules/@stdlib/math/base/special/betaincinv/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var logEachMap = require( '@stdlib/console/log-each-map' );
2323
var betaincinv = require( './../lib' );
2424

2525
var opts = {
26-
'dtype': 'float64'
26+
'dtype': 'float64'
2727
};
2828
var p = uniform( 100, 0.0, 1.0, opts );
2929
var a = uniform( 100, 0.0, 10.0, opts );

lib/node_modules/@stdlib/math/base/special/binomcoef/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var logEachMap = require( '@stdlib/console/log-each-map' );
2323
var binomcoef = require( './../lib' );
2424

2525
var opts = {
26-
'dtype': 'float64'
26+
'dtype': 'float64'
2727
};
2828
var n = discreteUniform( 100, -10, 30, opts );
2929
var k = discreteUniform( 100, 0, 20, opts );

lib/node_modules/@stdlib/math/base/special/binomcoefln/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var logEachMap = require( '@stdlib/console/log-each-map' );
2323
var binomcoefln = require( './../lib' );
2424

2525
var opts = {
26-
'dtype': 'float64'
26+
'dtype': 'float64'
2727
};
2828
var n = discreteUniform( 100, -10, 30, opts );
2929
var k = discreteUniform( 100, 0, 20, opts );

0 commit comments

Comments
 (0)