diff options
author | Erik Johnston <erik@matrix.org> | 2017-03-27 18:02:17 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-03-27 18:02:17 +0100 |
commit | bac9bf1b12f12f6ed380bb5b419ef05723164943 (patch) | |
tree | fa7fe88f888825d0131efd3e669e9ce0610b67ca /synapse/storage | |
parent | Short circuit if all new events have same state group (diff) | |
download | synapse-bac9bf1b12f12f6ed380bb5b419ef05723164943.tar.xz |
Typo
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/events.py | 2 |
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) |