Skip to content

Commit 7ddb912

Browse files
authored
style: fix indentation
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 2f6d6b0 commit 7ddb912

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/poisson/median/src

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/poisson/median/src/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ double stdlib_base_dists_poisson_median( const double lambda ) {
3737
) {
3838
return 0.0/0.0; // NaN
3939
}
40-
if ( lambda == 0.0 ) {
41-
return 0.0;
42-
}
40+
if ( lambda == 0.0 ) {
41+
return 0.0;
42+
}
4343
return stdlib_base_floor( lambda + ( 1.0 / 3.0 ) - ( 0.02 / lambda ) );
4444
}

0 commit comments

Comments
 (0)