Skip to content

Commit eebd899

Browse files
authored
style: add missing space
PR-URL: #5287 Closes: #5233 Ref: ac38037 Reviewed-by: Athan Reines <[email protected]>
1 parent eecbeee commit eebd899

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/uniform/logpdf/src

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ double stdlib_base_dists_uniform_logpdf( const double x, const double a, const d
4242
) {
4343
return 0.0/0.0; // NaN
4444
}
45-
if ( x < a || x > b) {
45+
if ( x < a || x > b ) {
4646
return STDLIB_CONSTANT_FLOAT64_NINF;
4747
}
4848
return -stdlib_base_ln( b - a );

0 commit comments

Comments
 (0)