Skip to content

Commit 78357cc

Browse files
fix: add indentation
Co-authored-by: Philipp Burckhardt <[email protected]> Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 2b08fe6 commit 78357cc

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/gamma/logpdf/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ int main( void ) {
3535
for ( i = 0; i < 25; i++ ) {
3636
x = random_uniform( 0.0, 10.0 ) - 5.0;
3737
alpha = random_uniform( 0.0, 20.0 );
38-
beta = random_uniform( 0.0, 20.0 );
38+
beta = random_uniform( 0.0, 20.0 );
3939
y = stdlib_base_dists_gamma_logpdf( x, alpha, beta );
4040
printf( "x: %lf, α: %lf, β: %lf, ln(f(x;α,β)):: %lf\n", x, alpha, beta, y );
4141
}

0 commit comments

Comments
 (0)