From de1be2fc6ac5fdadc2119d76e8807fbd7638dc96 Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Tue, 14 Jan 2025 10:27:07 +0000 Subject: [PATCH] fix: remove incorrect comment --- crdt/interface.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crdt/interface.go b/crdt/interface.go index 4cd6393..f51f0f2 100644 --- a/crdt/interface.go +++ b/crdt/interface.go @@ -14,7 +14,6 @@ type Result struct { Root ipld.Link // Head is the list of event CIDs at the head of the clock. Head []ipld.Link - // Event is the clock event block created for the operation performed. This - // block is also present in [Result.Additions]. + // Event is the clock event block created for the operation performed. Event block.BlockView[event.Event[operation.Operation]] }