Skip to content

Commit 9eed89f

Browse files
chore: minor clean up
1 parent e7a6cf2 commit 9eed89f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/degenerate/cdf/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_cdf( x, mu );
200-
printf( "x: %1f. µ: %1f. F(x;µ): %lf\n", x, mu , y );
200+
printf( "x: %lf, µ: %lf, F(x;µ): %lf\n", x, mu, y );
201201
}
202202
}
203203
```

lib/node_modules/@stdlib/stats/base/dists/degenerate/cdf/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_cdf( x, mu );
39-
printf( "x: %1f. µ: %1f. F(x;µ): %lf\n", x, mu , y );
39+
printf( "x: %lf, µ: %lf, F(x;µ): %lf\n", x, mu, y );
4040
}
4141
}

0 commit comments

Comments
 (0)