Skip to content

Commit be4a6c5

Browse files
chore: minor clean up
1 parent d554246 commit be4a6c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/degenerate/logcdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ int main( void ) {
197197
x = stdlib_base_round( random_uniform( 0.0, 10.0 ) );
198198
mu = stdlib_base_round( random_uniform( 0.0, 10.0 ) );
199199
y = stdlib_base_dists_degenerate_logcdf( x, mu );
200-
printf( "x: %1f. µ: %1f. ln(F(x;µ)): %lf\n", x, mu , y );
200+
printf( "x: %lf, µ: %lf, ln(F(x;µ)): %lf\n", x, mu, y );
201201
}
202202
}
203203
```

lib/node_modules/@stdlib/stats/base/dists/degenerate/logcdf/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, 10.0 ) );
3737
mu = stdlib_base_round( random_uniform( 0.0, 10.0 ) );
3838
y = stdlib_base_dists_degenerate_logcdf( x, mu );
39-
printf( "x: %1f. µ: %1f. ln(F(x;µ)): %lf\n", x, mu , y );
39+
printf( "x: %lf, µ: %lf, ln(F(x;µ)): %lf\n", x, mu, y );
4040
}
4141
}

0 commit comments

Comments
 (0)