Skip to content

Commit cdb3280

Browse files
authored
Update uniform.rs
1 parent 91f5370 commit cdb3280

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/distributions/uniform.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -828,11 +828,11 @@ macro_rules! uniform_float_impl {
828828
let low = *low_b.borrow();
829829
let high = *high_b.borrow();
830830
assert!(
831-
low.all_finite()
831+
low.all_finite(),
832832
"Uniform::new called with `low` non-finite."
833833
);
834834
assert!(
835-
high.all_finite()
835+
high.all_finite(),
836836
"Uniform::new called with `high` non-finite."
837837
);
838838
assert!(low.all_lt(high), "Uniform::new called with `low >= high`");

0 commit comments

Comments
 (0)