diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-07-26 13:32:15 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-07-26 13:32:15 +0100 |
commit | 33d777647325501d2a1d18d95efc5f9f64eeb46e (patch) | |
tree | d7e1cdb907ede74935fbda65f24124cd766b03ab | |
parent | Merge branch 'develop' into rav/delete_refreshtoken_on_delete_device (diff) | |
download | synapse-33d777647325501d2a1d18d95efc5f9f64eeb46e.tar.xz |
Fix typo
-rw-r--r-- | synapse/storage/registration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/registration.py b/synapse/storage/registration.py index d9555e073a..7e7d32eb66 100644 --- a/synapse/storage/registration.py +++ b/synapse/storage/registration.py @@ -339,7 +339,7 @@ class RegistrationStore(background_updates.BackgroundUpdateStore): Args: token (str): The access token of a user. Returns: - defer.Deferred: None, if the token did not match, ootherwise dict + defer.Deferred: None, if the token did not match, otherwise dict including the keys `name`, `is_guest`, `device_id`, `token_id`. """ return self.runInteraction( |