summary refs log tree commit diff
path: root/synapse/storage/events.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-03-27 18:02:17 +0100
committerErik Johnston <erik@matrix.org>2017-03-27 18:02:17 +0100
commitbac9bf1b12f12f6ed380bb5b419ef05723164943 (patch)
treefa7fe88f888825d0131efd3e669e9ce0610b67ca /synapse/storage/events.py
parentShort circuit if all new events have same state group (diff)
downloadsynapse-bac9bf1b12f12f6ed380bb5b419ef05723164943.tar.xz
Typo
Diffstat (limited to 'synapse/storage/events.py')
-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 61e48bf6a0..3f6833fad2 100644
--- a/synapse/storage/events.py
+++ b/synapse/storage/events.py
@@ -439,7 +439,7 @@ class EventsStore(SQLBaseStore):
                     if ctx.current_state_ids is None:
                         raise Exception("Unknown current state")
 
-                    # If we've akready seen the state group don't bother adding
+                    # If we've already seen the state group don't bother adding
                     # it to the state sets again
                     if ctx.state_group not in state_groups:
                         state_sets.append(ctx.current_state_ids)