Skip to content

Commit f42f5e1

Browse files
authored
style: remove trailing spaces
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 8123abf commit f42f5e1

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/normal/logpdf/src

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/normal/logpdf/src/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ double stdlib_base_dists_normal_logpdf( const double x, const double mu, const d
5252
if ( sigma == 0.0 ) {
5353
return (x == mu) ? STDLIB_CONSTANT_FLOAT64_PINF : STDLIB_CONSTANT_FLOAT64_NINF;
5454
}
55-
s2 = stdlib_base_pow( sigma, 2.0 );
56-
A = (-0.5) * ( ( 2.0 * stdlib_base_ln(sigma) ) + STDLIB_CONSTANT_FLOAT64_LN_TWO_PI );
57-
B = -1.0 / ( 2.0 * s2 );
55+
s2 = stdlib_base_pow( sigma, 2.0 );
56+
A = (-0.5) * ( ( 2.0 * stdlib_base_ln(sigma) ) + STDLIB_CONSTANT_FLOAT64_LN_TWO_PI );
57+
B = -1.0 / ( 2.0 * s2 );
5858
return A + ( B * stdlib_base_pow( x - mu, 2.0 ) );
5959
}

0 commit comments

Comments
 (0)