From e69bc7330c3c6e0a75f22bbf7fed6d9401afbbcb Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Tue, 21 Feb 2017 13:40:43 +0000 Subject: [PATCH] Grammar? --- .../dendrite/roomserver/storage/previous_events_table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.com/matrix-org/dendrite/roomserver/storage/previous_events_table.go b/src/github.com/matrix-org/dendrite/roomserver/storage/previous_events_table.go index 6b17d2fdc..357245555 100644 --- a/src/github.com/matrix-org/dendrite/roomserver/storage/previous_events_table.go +++ b/src/github.com/matrix-org/dendrite/roomserver/storage/previous_events_table.go @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS previous_events ( ` // Insert an entry into the previous_events table. -// The there is already an entry indicating that an event references that previous event then +// If there is already an entry indicating that an event references that previous event then // add the event NID to the list to indicate that this event references that previous event as well. // This should only be modified while holding a "FOR UPDATE" lock on the row in the rooms table for this room. // The lock is necessary to avoid data races when checking whether an event is already referenced by another event.