From 86a04439168454ab7e2ca4ba69b2337d581c0ce0 Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Wed, 7 Aug 2024 13:41:58 +0100 Subject: [PATCH] crdt: run cargo fmt --- radicle-crdt/src/clock.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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 } } }