Skip to content

Commit f404748

Browse files
committed
Fix: #5233
1 parent 16fe13d commit f404748

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

Lines changed: 1 addition & 1 deletion
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)