diff --git a/radicle-crdt/src/clock.rs b/radicle-crdt/src/clock.rs index 547f01d4..7e5699a4 100644 --- a/radicle-crdt/src/clock.rs +++ b/radicle-crdt/src/clock.rs @@ -146,14 +146,10 @@ impl std::ops::Add for Physical { impl Bounded for Physical { fn min_value() -> Self { - Self { - seconds: u64::MIN, - } + Self { seconds: u64::MIN } } fn max_value() -> Self { - Self { - seconds: u64::MAX, - } + Self { seconds: u64::MAX } } }