summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-11-17 23:25:37 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-11-17 23:27:05 +0100
commit6e598fee931f48b52c76504dd2dcc345823c8688 (patch)
tree72982dbd7f31740008e7c030a0a00b1d93c082f6 /docs
parenta586f2a7e56b854bb13403524259289974c7232c (diff)
[1.5.x] Fix typo in file storage docs.
Backport of 4585e12 from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-file-storage.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/custom-file-storage.txt b/docs/howto/custom-file-storage.txt
index 51558d9715..090cc089cb 100644
--- a/docs/howto/custom-file-storage.txt
+++ b/docs/howto/custom-file-storage.txt
@@ -27,7 +27,7 @@ You'll need to follow these steps:
option = settings.CUSTOM_STORAGE_OPTIONS
...
-#. Your storage class must implement the :meth:`_open()` and :meth:`_save()
+#. Your storage class must implement the :meth:`_open()` and :meth:`_save()`
methods, along with any other methods appropriate to your storage class. See
below for more on these methods.