summary refs log tree commit diff
path: root/synapse/handlers/message.py
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2018-07-10 17:58:09 +0100
committerMatthew Hodgson <matthew@matrix.org>2018-07-10 17:58:18 +0100
commitea752bdd99f20f14c18320869c9101c2c403759f (patch)
tree90247f9bbbd5320c317b0f188cc504ab7778461c /synapse/handlers/message.py
parentAttempt to include db threads in cpu usage stats (#3496) (diff)
downloadsynapse-ea752bdd99f20f14c18320869c9101c2c403759f.tar.xz
s/becuase/because/g
Diffstat (limited to 'synapse/handlers/message.py')
-rw-r--r--synapse/handlers/message.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py
index f27f4d3546..a39b852ceb 100644
--- a/synapse/handlers/message.py
+++ b/synapse/handlers/message.py
@@ -384,7 +384,7 @@ class MessageHandler(BaseHandler):
         users_with_profile = yield self.state.get_current_user_in_room(room_id)
 
         # If this is an AS, double check that they are allowed to see the members.
-        # This can either be because the AS user is in the room or becuase there
+        # This can either be because the AS user is in the room or because there
         # is a user in the room that the AS is "interested in"
         if requester.app_service and user_id not in users_with_profile:
             for uid in users_with_profile: