diff options
author | Matthew Hodgson <matthew@matrix.org> | 2018-07-10 17:58:09 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2018-07-10 17:58:18 +0100 |
commit | ea752bdd99f20f14c18320869c9101c2c403759f (patch) | |
tree | 90247f9bbbd5320c317b0f188cc504ab7778461c /synapse/storage | |
parent | Attempt to include db threads in cpu usage stats (#3496) (diff) | |
download | synapse-ea752bdd99f20f14c18320869c9101c2c403759f.tar.xz |
s/becuase/because/g
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/user_directory.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/user_directory.py b/synapse/storage/user_directory.py index ce59e70d0e..a8781b0e5d 100644 --- a/synapse/storage/user_directory.py +++ b/synapse/storage/user_directory.py @@ -265,7 +265,7 @@ class UserDirectoryStore(SQLBaseStore): self.get_user_in_public_room.invalidate((user_id,)) def get_users_in_public_due_to_room(self, room_id): - """Get all user_ids that are in the room directory becuase they're + """Get all user_ids that are in the room directory because they're in the given room_id """ return self._simple_select_onecol( @@ -277,7 +277,7 @@ class UserDirectoryStore(SQLBaseStore): @defer.inlineCallbacks def get_users_in_dir_due_to_room(self, room_id): - """Get all user_ids that are in the room directory becuase they're + """Get all user_ids that are in the room directory because they're in the given room_id """ user_ids_dir = yield self._simple_select_onecol( |