Skip to content

Commit 169e238

Browse files
committed
style: Formatting fix
1 parent 2f050e7 commit 169e238

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/adapt_strategy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ impl<F: CpuLogpFunc> AdaptStrategy for ExpWindowDiagAdapt<F> {
353353
.grad
354354
.iter()
355355
.map(|&grad| grad.abs().recip().clamp(LOWER_LIMIT, UPPER_LIMIT))
356-
.map(|var| if var.is_finite() { Some(var) } else { Some(1.) })
356+
.map(|var| if var.is_finite() { Some(var) } else { Some(1.) }),
357357
);
358358
}
359359

0 commit comments

Comments
 (0)