diff options
author | David Baker <dave@matrix.org> | 2018-05-22 17:14:06 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2018-05-22 17:14:06 +0100 |
commit | 0a078026eae694337cfdf8c9460d1b231b1bd04a (patch) | |
tree | f7fd21ae06cc3ccb7be17e989f521302daf3e9a8 /synapse/handlers | |
parent | Merge pull request #3262 from matrix-org/rav/has_already_consented (diff) | |
download | synapse-0a078026eae694337cfdf8c9460d1b231b1bd04a.tar.xz |
comment typo
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/deactivate_account.py | 2 |
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) |