Skip to content

Commit 62fe488

Browse files
authored
style: fix trailing space
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 65ec703 commit 62fe488

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/negative-binomial/mean

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/negative-binomial/mean/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ int main( void ) {
3232
int i;
3333

3434
for ( i = 0; i < 10; i++ ) {
35-
r = random_uniform( 1.0, 100.0 );
35+
r = random_uniform( 1.0, 100.0 );
3636
p = random_uniform( 0.01, 0.99 );
3737
y = stdlib_base_dists_negative_binomial_mean( r, p );
3838
printf( "r: %f, p: %.4f, E(X;r,p): %.4f\n", r, p, y );

lib/node_modules/@stdlib/stats/base/dists/negative-binomial/mean/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
double stdlib_base_dists_negative_binomial_mean( const double r, const double p ) {
3434
if (
3535
stdlib_base_is_nan( r ) ||
36-
stdlib_base_is_nan( p )
36+
stdlib_base_is_nan( p )
3737
) {
3838
return 0.0 / 0.0; // NaN
3939
}

0 commit comments

Comments
 (0)