Skip to content

Commit b593db6

Browse files
Replace tab character with spaces in poisson.rs. (#1320)
1 parent 0c4c6c0 commit b593db6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rand_distr/src/poisson.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ where F: Float + FloatConst, Standard: Distribution<F>
6969
/// Construct a new `Poisson` with the given shape parameter
7070
/// `lambda`.
7171
pub fn new(lambda: F) -> Result<Poisson<F>, Error> {
72-
if !lambda.is_finite() {
72+
if !lambda.is_finite() {
7373
return Err(Error::NonFinite);
7474
}
7575
if !(lambda > F::zero()) {

0 commit comments

Comments
 (0)