Skip to content

Commit 9cdc43c

Browse files
chore: minor clean up
1 parent e330cf0 commit 9cdc43c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/bernoulli/mgf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ int main( void ) {
222222
t = random_uniform( -2.0, 2.0 );
223223
p = random_uniform( 0.0, 1.0 );
224224
y = stdlib_base_dists_bernoulli_mgf( t, p );
225-
printf( "t: %lf. p: %1f. M_X(t;p): %lf\n", t, p , y );
225+
printf( "t: %lf, p: %lf, M_X(t;p): %lf\n", t, p, y );
226226
}
227227
}
228228
```

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
@@ -35,6 +35,6 @@ int main( void ) {
3535
t = random_uniform( -2.0, 2.0 );
3636
p = random_uniform( 0.0, 1.0 );
3737
y = stdlib_base_dists_bernoulli_mgf( t, p );
38-
printf( "t: %lf. p: %1f. M_X(t;p): %lf\n", t, p , y );
38+
printf( "t: %lf, p: %lf, M_X(t;p): %lf\n", t, p, y );
3939
}
4040
}

0 commit comments

Comments
 (0)