Skip to content

Commit 9bf1fbb

Browse files
authored
docs: fix copy & paste error
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent df981db commit 9bf1fbb

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/bernoulli/variance/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_variance( p );
31-
printf( "p: %lf, F(X;p): %lf\n", p, y );
31+
printf( "p: %lf, Var(X;p): %lf\n", p, y );
3232
}
3333
}

0 commit comments

Comments
 (0)