Skip to content

Commit b0bc19e

Browse files
chore: minor clean up
1 parent 04d772f commit b0bc19e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ int main( void ) {
216216
x = stdlib_base_round( random_uniform( 0.0, 2.0 ) );
217217
p = random_uniform( 0.0, 1.0 );
218218
y = stdlib_base_dists_bernoulli_pmf( x, p );
219-
printf( "x: %lf. p: %1f. P( X = x; p ): %lf\n", x, p, y );
219+
printf( "x: %lf, p: %lf, P( X = x; p ): %lf\n", x, p, y );
220220
}
221221
}
222222
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ int main( void ) {
3636
x = stdlib_base_round( random_uniform( 0.0, 2.0 ) );
3737
p = random_uniform( 0.0, 1.0 );
3838
y = stdlib_base_dists_bernoulli_pmf( x, p );
39-
printf( "x: %lf. p: %1f. P( X = x; p ): %lf\n", x, p, y );
39+
printf( "x: %lf, p: %lf, P( X = x; p ): %lf\n", x, p, y );
4040
}
4141
}

0 commit comments

Comments
 (0)