Skip to content

Commit 52f07eb

Browse files
chore: add indentation
Co-authored-by: Philipp Burckhardt <[email protected]> Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 526c5dc commit 52f07eb

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/kumaraswamy/stdev/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/kumaraswamy/stdev/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ double stdlib_base_dists_kumaraswamy_stdev( const double a, const double b ) {
4545
stdlib_base_is_nan( b ) ||
4646
b <= 0.0
4747
) {
48-
return 0.0/0.0; //NaN
48+
return 0.0/0.0; // NaN
4949
}
5050
m1 = b * stdlib_base_beta( 1.0 + ( 1.0/a ), b );
5151
m2 = b * stdlib_base_beta( 1.0 + ( 2.0/a ), b );

0 commit comments

Comments
 (0)