Skip to content

Commit 3f982ca

Browse files
committed
fix: resolve lint errors
1 parent c6575f4 commit 3f982ca

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

lib/node_modules/@stdlib/stats/base/dists/planck/mean/examples/c/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ run: $(c_targets)
143143
clean:
144144
$(QUIET) -rm -f *.o *.out
145145

146-
.PHONY: clean
146+
.PHONY: clean

lib/node_modules/@stdlib/stats/base/dists/planck/mean/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var addon = require( './../src/addon.node' );
5353
* // returns NaN
5454
*/
5555
function mean( lambda ) {
56-
return addon( lambda );
56+
return addon( lambda );
5757
}
5858

5959

lib/node_modules/@stdlib/stats/base/dists/planck/mean/test/test.native.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,19 @@ var opts = {
4343

4444
// TESTS //
4545

46-
tape( 'main export is a function', opts , function test( t ) {
46+
tape( 'main export is a function', opts, function test( t ) {
4747
t.ok( true, __filename );
4848
t.strictEqual( typeof mean, 'function', 'main export is a function' );
4949
t.end();
5050
});
5151

52-
tape( 'if provided `NaN` for `lambda`, the function returns `NaN`', opts , function test( t ) {
52+
tape( 'if provided `NaN` for `lambda`, the function returns `NaN`', opts, function test( t ) {
5353
var v = mean( NaN );
5454
t.equal( isnan( v ), true, 'returns expected value' );
5555
t.end();
5656
});
5757

58-
tape( 'if provided a success probability `lambda` which is nonpositive, the function returns `NaN`', opts , function test( t ) {
58+
tape( 'if provided a success probability `lambda` which is nonpositive, the function returns `NaN`', opts, function test( t ) {
5959
var v;
6060

6161
v = mean( 0.0 );
@@ -67,7 +67,7 @@ tape( 'if provided a success probability `lambda` which is nonpositive, the func
6767
t.end();
6868
});
6969

70-
tape( 'the function returns the mean of a Planck distribution', opts , function test( t ) {
70+
tape( 'the function returns the mean of a Planck distribution', opts, function test( t ) {
7171
var expected;
7272
var lambda;
7373
var delta;
@@ -89,4 +89,3 @@ tape( 'the function returns the mean of a Planck distribution', opts , function
8989
}
9090
t.end();
9191
});
92-

0 commit comments

Comments
 (0)