summary refs log tree commit diff
path: root/synapse/replication
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-02-20 17:58:40 +0000
committerErik Johnston <erik@matrix.org>2018-02-20 17:58:40 +0000
commit95e4cffd859b0fc3fcd54c755fcc0da403f97b94 (patch)
treef0fd11dfca822ee371c546346692a12ef6ab2283 /synapse/replication
parentUse abstract base class to access stream IDs (diff)
downloadsynapse-95e4cffd859b0fc3fcd54c755fcc0da403f97b94.tar.xz
Fix comment
Diffstat (limited to 'synapse/replication')
-rw-r--r--synapse/replication/slave/storage/receipts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/receipts.py b/synapse/replication/slave/storage/receipts.py
index a2eb4a02db..f0e29e9836 100644
--- a/synapse/replication/slave/storage/receipts.py
+++ b/synapse/replication/slave/storage/receipts.py
@@ -31,7 +31,7 @@ from synapse.storage.receipts import ReceiptsWorkerStore
 class SlavedReceiptsStore(ReceiptsWorkerStore, BaseSlavedStore):
 
     def __init__(self, db_conn, hs):
-        # We instansiate this first as the ReceiptsWorkerStore constructor
+        # We instantiate this first as the ReceiptsWorkerStore constructor
         # needs to be able to call get_max_receipt_stream_id
         self._receipts_id_gen = SlavedIdTracker(
             db_conn, "receipts_linearized", "stream_id"