From 91daf91f8e499e55a8d71da19d45f0986cdfb322 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Fri, 16 Oct 2020 12:59:20 +0100 Subject: [PATCH] Update comments --- roomserver/api/input.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/roomserver/api/input.go b/roomserver/api/input.go index 1bc24db59..e1a8afa00 100644 --- a/roomserver/api/input.go +++ b/roomserver/api/input.go @@ -32,11 +32,13 @@ const ( // KindNew event extend the contiguous graph going forwards. // They usually don't need state, but may include state if the // there was a new event that references an event that we don't - // have a copy of. + // have a copy of. New events will influence the fwd extremities + // of the room and output events will be generated as a result. KindNew // KindOld event extend the graph backwards, or fill gaps in - // history. They may or may not include state, and they will not - // be considered as candidates for forward extremities. + // history. They may or may not include state. They will not be + // considered for forward extremities, and output events will NOT + // be generated for them. KindOld )