summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2020-10-01 11:43:16 +0100
committerRichard van der Hoff <richard@matrix.org>2020-10-01 11:43:16 +0100
commit607367aeb1c9bf6366ebdf093d0bdba37891fe1b (patch)
treedab975e0c67193d9b2807b7f0a2b85afa426433c
parentRemove dangling changelog.d files (diff)
downloadsynapse-607367aeb1c9bf6366ebdf093d0bdba37891fe1b.tar.xz
Fix typo in comment
I think this came from a bad merge
-rw-r--r--synapse/storage/databases/main/monthly_active_users.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/monthly_active_users.py b/synapse/storage/databases/main/monthly_active_users.py

index 097a16cb2e..e93aad33cd 100644 --- a/synapse/storage/databases/main/monthly_active_users.py +++ b/synapse/storage/databases/main/monthly_active_users.py
@@ -206,7 +206,7 @@ class MonthlyActiveUsersStore(MonthlyActiveUsersWorkerStore): # a least recently active basis. # Note it is not possible to write this query using OFFSET due to # incompatibilities in how sqlite and postgres support the feature. - # Sqlite requires 'LIMIT -1 OFFSET ?', the LIMIT must be presents, + # Sqlite requires 'LIMIT -1 OFFSET ?', the LIMIT must be present, # while Postgres does not require 'LIMIT', but also does not support # negative LIMIT values. So there is no way to write it that both can # support