Skip to content

Commit 6923901

Browse files
authored
chore: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 2fc9bc7 commit 6923901

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/bernoulli/median/examples/c

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ int main( void ) {
2828
for ( i = 0; i < 25; i++ ) {
2929
p = (double)rand() / ( (double)RAND_MAX + 1.0 );
3030
y = stdlib_base_dists_bernoulli_median( p );
31-
printf( "x: %lf , H(X;p): %lf\n", p , y );
31+
printf( "x: %lf , Median(X;p): %lf\n", p , y );
3232
}
3333
}

0 commit comments

Comments
 (0)