Skip to content

Commit 81e6987

Browse files
committed
Run cargo format
1 parent 59b0ef7 commit 81e6987

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/relative_eq.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,8 @@ where
1818
fn default_max_relative() -> Self::Epsilon;
1919

2020
/// A test for equality that uses a relative comparison if the values are far apart.
21-
fn relative_eq(
22-
&self,
23-
other: &Rhs,
24-
epsilon: Self::Epsilon,
25-
max_relative: Self::Epsilon,
26-
) -> bool;
21+
fn relative_eq(&self, other: &Rhs, epsilon: Self::Epsilon, max_relative: Self::Epsilon)
22+
-> bool;
2723

2824
/// The inverse of [`RelativeEq::relative_eq`].
2925
fn relative_ne(

0 commit comments

Comments
 (0)