summary refs log tree commit diff
path: root/synapse/rest
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-01-18 17:11:20 +0000
committerErik Johnston <erik@matrix.org>2018-01-18 17:11:29 +0000
commitaae77da73ffc89c31d0b17fa8ce5d8b58605de63 (patch)
treec832988b457a7b71a12ff170c001a667df14ca83 /synapse/rest
parentMake storage providers more configurable (diff)
downloadsynapse-aae77da73ffc89c31d0b17fa8ce5d8b58605de63.tar.xz
Fixup comments
Diffstat (limited to 'synapse/rest')
-rw-r--r--synapse/rest/media/v1/storage_provider.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/rest/media/v1/storage_provider.py b/synapse/rest/media/v1/storage_provider.py
index 0074d2d426..9bf88f01f9 100644
--- a/synapse/rest/media/v1/storage_provider.py
+++ b/synapse/rest/media/v1/storage_provider.py
@@ -99,7 +99,7 @@ class FileStorageProviderBackend(StorageProvider):
 
     Args:
         hs (HomeServer)
-        config: The config returned by `parse_config`, i
+        config: The config returned by `parse_config`.
     """
 
     def __init__(self, hs, config):
@@ -133,7 +133,7 @@ class FileStorageProviderBackend(StorageProvider):
 
         The returned value is passed into the constructor.
 
-        In this case we only care about a single param, the directory, so lets
+        In this case we only care about a single param, the directory, so let's
         just pull that out.
         """
         return Config.ensure_directory(config["directory"])