summary refs log tree commit diff
path: root/synapse/handlers/deactivate_account.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2018-05-22 17:14:06 +0100
committerDavid Baker <dave@matrix.org>2018-05-22 17:14:06 +0100
commit0a078026eae694337cfdf8c9460d1b231b1bd04a (patch)
treef7fd21ae06cc3ccb7be17e989f521302daf3e9a8 /synapse/handlers/deactivate_account.py
parentMerge pull request #3262 from matrix-org/rav/has_already_consented (diff)
downloadsynapse-0a078026eae694337cfdf8c9460d1b231b1bd04a.tar.xz
comment typo
Diffstat (limited to 'synapse/handlers/deactivate_account.py')
-rw-r--r--synapse/handlers/deactivate_account.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/deactivate_account.py b/synapse/handlers/deactivate_account.py
index 4eb18775e8..d58ea6c650 100644
--- a/synapse/handlers/deactivate_account.py
+++ b/synapse/handlers/deactivate_account.py
@@ -61,7 +61,7 @@ class DeactivateAccountHandler(BaseHandler):
         yield self.store.user_delete_threepids(user_id)
         yield self.store.user_set_password_hash(user_id, None)
 
-        # Add the user to a table of users penpding deactivation (ie.
+        # Add the user to a table of users pending deactivation (ie.
         # removal from all the rooms they're a member of)
         yield self.store.add_user_pending_deactivation(user_id)