Skip to content

Commit

Permalink
style: add missing space
Browse files Browse the repository at this point in the history
PR-URL: #5287
Closes: #5233
Ref: ac38037
Reviewed-by: Athan Reines <[email protected]>
  • Loading branch information
rishavtarway authored Feb 19, 2025
1 parent eecbeee commit eebd899
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ double stdlib_base_dists_uniform_logpdf( const double x, const double a, const d
) {
return 0.0/0.0; // NaN
}
if ( x < a || x > b) {
if ( x < a || x > b ) {
return STDLIB_CONSTANT_FLOAT64_NINF;
}
return -stdlib_base_ln( b - a );
Expand Down

1 comment on commit eebd899

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
stats/base/dists/uniform/logpdf $\color{green}291/291$
$\color{green}+100.00\%$
$\color{green}25/25$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}291/291$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.