summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorJosh Schneier <josh.schneier@gmail.com>2017-04-19 14:48:01 -0400
committerTim Graham <timograham@gmail.com>2017-04-25 19:49:00 -0400
commit98ee57e343206ef553de78b22be5e9a6dacb5060 (patch)
tree9f178f16f0d53582f40cf9e0d93e8288a47460aa /docs/ref/models
parenta78fd2abd48811a824d9ac61e61ce106567380a8 (diff)
Removed nonexistent methods from File's docs.
read() and write() were removed in 68a890e79f660484d05482902663b6168f0bd71e.
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/fields.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 36b553f92c..e9e601e5c7 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -760,10 +760,9 @@ the result of the :attr:`Storage.open()<django.core.files.storage.Storage.open>`
method, which may be a :class:`~django.core.files.File` object, or it may be a
custom storage's implementation of the :class:`~django.core.files.File` API.
-In addition to the API inherited from
-:class:`~django.core.files.File` such as :meth:`~django.core.files.File.read`
-and :meth:`~django.core.files.File.write`, :class:`FieldFile` includes several
-methods that can be used to interact with the underlying file:
+In addition to the API inherited from :class:`~django.core.files.File` such as
+``read()`` and ``write()``, :class:`FieldFile` includes several methods that
+can be used to interact with the underlying file:
.. warning::