summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-03-24 18:02:37 +0000
committerMark Haines <mark.haines@matrix.org>2016-03-24 18:02:37 +0000
commit77cba688edb9216f5c578c931e96142722641b70 (patch)
tree83f7846ffa872486bf98a3012e818f429ec26829
parentAdd a response cache for getting the public room list (diff)
downloadsynapse-77cba688edb9216f5c578c931e96142722641b70.tar.xz
Fix typo
-rw-r--r--synapse/util/caches/response_cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/util/caches/response_cache.py b/synapse/util/caches/response_cache.py
index 1c2e344269..be310ba320 100644
--- a/synapse/util/caches/response_cache.py
+++ b/synapse/util/caches/response_cache.py
@@ -25,7 +25,7 @@ class ResponseCache(object):
     """
 
     def __init__(self):
-        self.pending_result_cache = {}  # Request that haven't finished yet.
+        self.pending_result_cache = {}  # Requests that haven't finished yet.
 
     def get(self, key):
         result = self.pending_result_cache.get(key)