Skip to content

Commit 775fdb7

Browse files
chore: minor clean up
1 parent 168e55d commit 775fdb7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ int main( void ) {
211211
x = random_uniform( 0.0, 5.0 );
212212
p = random_uniform( 0.0, 1.0 );
213213
y = stdlib_base_dists_bernoulli_cdf( x, p );
214-
printf( "x: %lf. p: %1f. F(X;p): %lf\n", x, p , y );
214+
printf( "x: %lf. p: %lf. F(X;p): %lf\n", x, p, y );
215215
}
216216
}
217217
```

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

0 commit comments

Comments
 (0)