Skip to content

Commit 2e0964b

Browse files
authored
chore: add missing space
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 3fec785 commit 2e0964b

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/triangular/logcdf/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/triangular/logcdf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ double stdlib_base_dists_triangular_logcdf( const double x, const double a, cons
5252
if ( x <= c ) {
5353
return ( 2.0 * stdlib_base_ln( x - a ) - stdlib_base_ln( ( b - a ) * ( c - a ) ) );
5454
}
55-
if( x < b ) {
55+
if ( x < b ) {
5656
return stdlib_base_ln( 1.0 - ( stdlib_base_pow( b - x, 2.0 ) / ( ( b - a ) * ( b - c ) ) ) );
5757
}
5858
return 0.0;

0 commit comments

Comments
 (0)