summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-01-23 16:14:14 +0000
committerErik Johnston <erik@matrix.org>2017-01-23 16:14:14 +0000
commitfdf2a31a51874d5a42087caa88a08d46161801f1 (patch)
treef0ec4fe1511236c7582047ecd145ed104b6157f9 /synapse
parentRefactor to calculate state delta outside transaction (diff)
downloadsynapse-fdf2a31a51874d5a42087caa88a08d46161801f1.tar.xz
Typo
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py
index 599db4c9f0..8712d7e18c 100644
--- a/synapse/storage/events.py
+++ b/synapse/storage/events.py
@@ -379,7 +379,7 @@ class EventsStore(SQLBaseStore):
 
         Returns:
             2-tuple (to_delete, to_insert) where both are state dicts, i.e.
-            (type, state_key) -> event_id. `to_delete` are the entreis to
+            (type, state_key) -> event_id. `to_delete` are the entries to
             first be deleted from current_state_events, `to_insert` are entries
             to insert.
             May return None if there are no changes to be applied.