summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--synapse/storage/search.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/search.py b/synapse/storage/search.py
index dcc5ac65a3..380270b009 100644
--- a/synapse/storage/search.py
+++ b/synapse/storage/search.py
@@ -258,7 +258,7 @@ class SearchStore(BackgroundUpdateStore):
             # We want to use the full text search index on event_search to
             # extract all possible matches first, then lookup those matches
             # in the events table to get the topological ordering. We need
-            # to use the indexes in this order because sqlite refuses to 
+            # to use the indexes in this order because sqlite refuses to
             # MATCH unless it uses the full text search index
             sql = (
                 "SELECT rank(matchinfo) as rank, room_id, event_id,"