about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-09-13 15:43:32 +0000
committerbors <bors@rust-lang.org>2022-09-13 15:43:32 +0000
commitaebfbf2a91606d9a6f39005aee72725d867fd2fd (patch)
tree6e5a0b4af17c87d94a438cfac1d60e402a8e1d7a /src
parentbeed5eddb0f73f6721681560c73a51e3f15b8681 (diff)
downloadrust-aebfbf2a91606d9a6f39005aee72725d867fd2fd.tar.gz
rust-aebfbf2a91606d9a6f39005aee72725d867fd2fd.zip
fix typo
Diffstat (limited to 'src')
-rw-r--r--src/concurrency/vector_clock.rs2
1 files changed, 1 insertions, 1 deletions
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 @@ pub type VTimestamp = u32;
 /// 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]>);