Skip to content

Commit e8f0274

Browse files
committed
fix: resolve lint errors
1 parent e9ec76e commit e8f0274

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/stats/base/dists/bernoulli/mgf/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_mgf( t, p );
3333
printf( "t: %lf , p: %1f, M_X(t;p): %lf\n", t, p , y );
3434
}
35-
}
35+
}

lib/node_modules/@stdlib/stats/base/dists/bernoulli/mgf/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/mgf/include/stdlib/stats/base/dists/bernoulli/mgf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ double stdlib_base_dists_bernoulli_mgf( const double t, const double p );
3535
}
3636
#endif
3737

38-
#endif // !STDLIB_STATS_BASE_DISTS_BERNOULLI_MGF_H
38+
#endif // !STDLIB_STATS_BASE_DISTS_BERNOULLI_MGF_H

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@
7676
]
7777
}
7878
]
79-
}
79+
}

lib/node_modules/@stdlib/stats/base/dists/bernoulli/mgf/src/addon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
#include "stdlib/math/base/napi/binary.h"
2121

2222
// cppcheck-suppress shadowFunction
23-
STDLIB_MATH_BASE_NAPI_MODULE_DD_D( stdlib_base_dists_bernoulli_mgf )
23+
STDLIB_MATH_BASE_NAPI_MODULE_DD_D( stdlib_base_dists_bernoulli_mgf )

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ double stdlib_base_dists_bernoulli_mgf( const double t, const double p ) {
5858
return 0.0/0.0; // NaN
5959
}
6060
return ( 1.0 - p ) + ( p * stdlib_base_exp( t ) );
61-
}
61+
}

0 commit comments

Comments
 (0)