Skip to content

Commit 7a2fb05

Browse files
committed
fix: resolve lint errors
1 parent 2cc43a8 commit 7a2fb05

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/stats/base/dists/bernoulli/cdf/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ int main( void ) {
132132
printf( "ok %d benchmark finished\n", i+1 );
133133
}
134134
print_summary( REPEATS, REPEATS );
135-
}
135+
}

lib/node_modules/@stdlib/stats/base/dists/bernoulli/cdf/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ int main( void ) {
3232
y = stdlib_base_dists_bernoulli_cdf( x, p );
3333
printf( "x: %lf , p: %1f, F(X;p): %lf\n", x, p , y );
3434
}
35-
}
35+
}

lib/node_modules/@stdlib/stats/base/dists/bernoulli/cdf/include.gypi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
'<!@(node -e "var arr = require(\'@stdlib/utils/library-manifest\')(\'./manifest.json\',{},{\'basedir\':process.cwd(),\'paths\':\'posix\'}).libpath; for ( var i = 0; i < arr.length; i++ ) { console.log( arr[ i ] ); }")',
5151
],
5252
}, # end variables
53-
}
53+
}

lib/node_modules/@stdlib/stats/base/dists/bernoulli/cdf/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@
7373
]
7474
}
7575
]
76-
}
76+
}

lib/node_modules/@stdlib/stats/base/dists/bernoulli/cdf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ double stdlib_base_dists_bernoulli_cdf( const double x, const double p ) {
6767
return 1.0;
6868
}
6969
return 1.0 - p ;
70-
}
70+
}

0 commit comments

Comments
 (0)