summary refs log tree commit diff
path: root/synapse/http
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2014-11-24 01:41:12 +0000
committerMatthew Hodgson <matthew@matrix.org>2014-11-24 01:41:12 +0000
commitae8ad55cb8ab773b8a24f38ef8219ee7d0551dec (patch)
treedbf36521229cc0690db55ac8023dc4824fe671c0 /synapse/http
parentrst bugs (diff)
downloadsynapse-ae8ad55cb8ab773b8a24f38ef8219ee7d0551dec.tar.xz
typos
Diffstat (limited to 'synapse/http')
-rw-r--r--synapse/http/content_repository.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/http/content_repository.py b/synapse/http/content_repository.py
index 7e046dfe49..64ecb5346e 100644
--- a/synapse/http/content_repository.py
+++ b/synapse/http/content_repository.py
@@ -181,7 +181,7 @@ class ContentRepoResource(resource.Resource):
 
             fname = yield self.map_request_to_name(request)
 
-            # TODO I have a suspcious feeling this is just going to block
+            # TODO I have a suspicious feeling this is just going to block
             with open(fname, "wb") as f:
                 f.write(request.content.read())
 
@@ -190,7 +190,7 @@ class ContentRepoResource(resource.Resource):
             # FIXME: we can't assume what the repo's public mounted path is
             # ...plus self-signed SSL won't work to remote clients anyway
             # ...and we can't assume that it's SSL anyway, as we might want to
-            # server it via the non-SSL listener...
+            # serve it via the non-SSL listener...
             url = "%s/_matrix/content/%s" % (
                 self.external_addr, file_name
             )