diff options
author | Patrick Cloke <patrickc@matrix.org> | 2021-02-12 11:01:48 -0500 |
---|---|---|
committer | Patrick Cloke <patrickc@matrix.org> | 2021-02-12 11:14:12 -0500 |
commit | 7950aa8a27c3f45184c96fda210c62d068dd2591 (patch) | |
tree | bdbb8b61fa05020fdf800818066a8dc1a230da8b /synapse/storage/databases/main/receipts.py | |
parent | Merge tag 'v1.27.0rc2' into develop (diff) | |
download | synapse-7950aa8a27c3f45184c96fda210c62d068dd2591.tar.xz |
Fix some typos.
Diffstat (limited to 'synapse/storage/databases/main/receipts.py')
-rw-r--r-- | synapse/storage/databases/main/receipts.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/storage/databases/main/receipts.py b/synapse/storage/databases/main/receipts.py index e4843a202c..ae9283f52d 100644 --- a/synapse/storage/databases/main/receipts.py +++ b/synapse/storage/databases/main/receipts.py @@ -160,7 +160,7 @@ class ReceiptsWorkerStore(SQLBaseStore): Args: room_id: List of room_ids. - to_key: Max stream id to fetch receipts upto. + to_key: Max stream id to fetch receipts up to. from_key: Min stream id to fetch receipts from. None fetches from the start. @@ -189,7 +189,7 @@ class ReceiptsWorkerStore(SQLBaseStore): Args: room_ids: The room id. - to_key: Max stream id to fetch receipts upto. + to_key: Max stream id to fetch receipts up to. from_key: Min stream id to fetch receipts from. None fetches from the start. @@ -312,7 +312,7 @@ class ReceiptsWorkerStore(SQLBaseStore): to a limit of the latest 100 read receipts. Args: - to_key: Max stream id to fetch receipts upto. + to_key: Max stream id to fetch receipts up to. from_key: Min stream id to fetch receipts from. None fetches from the start. |