From 5881fd459c90f7c385613c58081b7dc57d36bc68 Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Wed, 24 Mar 2021 13:16:50 -0700 Subject: [PATCH] Better event comments --- event/eventmanager.go | 2 +- storage/v1/profile_store.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/event/eventmanager.go b/event/eventmanager.go index 8ab9165..be1c19f 100644 --- a/event/eventmanager.go +++ b/event/eventmanager.go @@ -7,7 +7,7 @@ import ( "sync" ) -// Events are the core struct passed around between various subsystems, they consist of a type which can be +// Event is the core struct type passed around between various subsystems. Events consist of a type which can be // filtered on, an event ID for tracing and a map of Fields to string values. type Event struct { EventType Type diff --git a/storage/v1/profile_store.go b/storage/v1/profile_store.go index b26b485..4947773 100644 --- a/storage/v1/profile_store.go +++ b/storage/v1/profile_store.go @@ -383,7 +383,7 @@ func (ps *ProfileStoreV1) eventHandler() { log.Errorf("error storing new group invite: %v (%v)", err, ev) } case event.SendMessageToPeer: // cache the message till an ack, then it's given to stream store. - // stream store doesn't support updates, so we don't want to commit it till ack'd + // stream store doesn't support updates, so we don't want to commit it till ack'd ps.profile.AddSentMessageToContactTimeline(ev.Data[event.RemotePeer], ev.Data[event.Data], time.Now(), ev.EventID) case event.NewMessageFromPeer: ps.attemptSavePeerMessage(ev.Data[event.RemotePeer], ev.Data[event.Data], ev.Data[event.TimestampReceived], true)