From aebfbf2a91606d9a6f39005aee72725d867fd2fd Mon Sep 17 00:00:00 2001 From: bors Date: Tue, 13 Sep 2022 15:43:32 +0000 Subject: [PATCH] fix typo --- src/concurrency/vector_clock.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/concurrency/vector_clock.rs b/src/concurrency/vector_clock.rs index 716fdba0f67..32449f8eb18 100644 --- a/src/concurrency/vector_clock.rs +++ b/src/concurrency/vector_clock.rs @@ -53,7 +53,7 @@ fn from(id: u32) -> Self { /// circuit the calculation and return the correct result faster, /// also this means that there is only one unique valid length /// for each set of vector clock values and hence the PartialEq -// and Eq derivations are correct. +/// and Eq derivations are correct. #[derive(PartialEq, Eq, Default, Debug)] pub struct VClock(SmallVec<[VTimestamp; SMALL_VECTOR]>);