diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-03-24 18:02:37 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-03-24 18:02:37 +0000 |
commit | 77cba688edb9216f5c578c931e96142722641b70 (patch) | |
tree | 83f7846ffa872486bf98a3012e818f429ec26829 | |
parent | Add a response cache for getting the public room list (diff) | |
download | synapse-77cba688edb9216f5c578c931e96142722641b70.tar.xz |
Fix typo
-rw-r--r-- | synapse/util/caches/response_cache.py | 2 |
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) |