From a32ef97592cdf66771a3df75bb8688e93cd5b420 Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" Date: Wed, 20 Sep 2023 13:38:12 -0700 Subject: [PATCH] fix comments (#33330) --- bucket_map/src/index_entry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bucket_map/src/index_entry.rs b/bucket_map/src/index_entry.rs index a81cb7865..b8a55a07b 100644 --- a/bucket_map/src/index_entry.rs +++ b/bucket_map/src/index_entry.rs @@ -38,7 +38,7 @@ struct DataBucketRefCountOccupiedHeader { #[derive(Debug, PartialEq)] pub enum OccupyIfMatches { - /// this entry is occupied and contains a pubkey with a different value, so this entry could not be updated + /// this entry is occupied and contains the same pubkey but with a different value, so this entry could not be updated FoundDuplicate, /// this entry was free and contains this pubkey and either value matched or the value was written to match SuccessfulInit,