Skip to content

Commit 2b7c997

Browse files
Aadish JainAadish Jain
authored andcommitted
feat(t-median): fixing styling
1 parent a06ceb6 commit 2b7c997

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/stats/base/dists/t/median/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ bench( pkg, function benchmark( b ) {
5555
}
5656
b.pass( 'benchmark finished' );
5757
b.end();
58-
} );
58+
});

lib/node_modules/@stdlib/stats/base/dists/t/median/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ bench( pkg + '::native', opts, function benchmark( b ) {
6464
}
6565
b.pass( 'benchmark finished' );
6666
b.end();
67-
} );
67+
});

lib/node_modules/@stdlib/stats/base/dists/t/median/test/test.native.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ tape( 'main export is a function', opts, function test( t ) {
4545
t.ok( true, __filename );
4646
t.strictEqual( typeof median, 'function', 'main export is a function' );
4747
t.end();
48-
} );
48+
});
4949

5050
tape( 'if provided `NaN` for the parameter, the function returns `NaN`', opts, function test( t ) {
5151
var y = median( NaN );
5252
t.equal( isnan( y ), true, 'returns NaN' );
5353
t.end();
54-
} );
54+
});
5555

5656
tape( 'if provided a negative value for `v`, the function returns `NaN`', opts, function test( t ) {
5757
var y;
@@ -63,7 +63,7 @@ tape( 'if provided a negative value for `v`, the function returns `NaN`', opts,
6363
t.equal( isnan( y ), true, 'returns NaN' );
6464

6565
t.end();
66-
} );
66+
});
6767

6868
tape( 'the function evaluates the median for a Student\'s t-distribution', opts, function test( t ) {
6969
var expected;
@@ -78,4 +78,4 @@ tape( 'the function evaluates the median for a Student\'s t-distribution', opts,
7878
t.equal( y, expected, 'v: ' + v + ', y: ' + y + ', expected: ' + expected );
7979
}
8080
t.end();
81-
} );
81+
});

0 commit comments

Comments
 (0)