Skip to content

Commit fb2a9cc

Browse files
authored
chore: add missing space
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent bfb1354 commit fb2a9cc

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/levy/quantile/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/levy/quantile/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ double stdlib_base_dists_levy_quantile( const double p, const double mu, const d
4242
p < 0.0 ||
4343
p > 1.0
4444
) {
45-
return 0.0 / 0.0; //NaN
45+
return 0.0 / 0.0; // NaN
4646
}
4747
fval = stdlib_base_erfcinv( p );
4848
return mu + ( c / ( 2.0 * fval * fval ) );

0 commit comments

Comments
 (0)