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)