summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorNeil Johnson <neil@fragile.org.uk>2018-08-02 22:47:48 +0100
committerNeil Johnson <neil@fragile.org.uk>2018-08-02 22:47:48 +0100
commit5e2f7b80844bc8ee401beab494948c093338f404 (patch)
treef4316387fd30a774e4a16d22b6f89a1269682998 /synapse/storage
parentwip attempt at caching (diff)
downloadsynapse-5e2f7b80844bc8ee401beab494948c093338f404.tar.xz
typo
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/monthly_active_users.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/monthly_active_users.py b/synapse/storage/monthly_active_users.py
index 19846cefd9..2872ba4cae 100644
--- a/synapse/storage/monthly_active_users.py
+++ b/synapse/storage/monthly_active_users.py
@@ -58,7 +58,7 @@ class MonthlyActiveUsersStore(SQLBaseStore):
                 txn.execute(sql, (self.max_mau_value,))
 
                 # It seems poor to invalidate the whole cache, but the alternative
-                # is to select then delete which has it's own problem.
+                # is to select then delete which has its own problems.
                 # It seems unlikely that anyone using this feature on large datasets
                 # would be using sqlite and if they are then there will be
                 # larger perf issues than this one to encourage an upgrade to postgres.