Skip to content

Commit d607719

Browse files
authored
chore: reorder variable declarations
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 9831d0b commit d607719

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/normal/cdf/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ static double random_uniform( const double min, const double max ) {
222222
}
223223
224224
int main( void ) {
225-
double x;
226-
double mu;
227225
double sigma;
226+
double mu;
227+
double x;
228228
double y;
229229
int i;
230230

lib/node_modules/@stdlib/stats/base/dists/normal/cdf/examples/c/example.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ static double random_uniform( const double min, const double max ) {
2727
}
2828

2929
int main( void ) {
30-
double x;
31-
double mu;
3230
double sigma;
31+
double mu;
32+
double x;
3333
double y;
3434
int i;
3535

0 commit comments

Comments
 (0)