summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2009-04-16 13:29:31 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2009-04-16 13:29:31 +0000
commit33eca69b95bb1e7380767b51cfef068088396367 (patch)
treed4a3da8090118be4c7064b2cd60ca5eba6fae879 /docs
parente249b0ec4d8bb3880883927a1c732d882bcdfa48 (diff)
[1.0.X] Fixed #10779 -- Corrected description of an example in the files docs. Thanks to timo for the patch.
Merge of r10567 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10571 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/files.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/files.txt b/docs/topics/files.txt
index e166ff92c4..8e17db20fb 100644
--- a/docs/topics/files.txt
+++ b/docs/topics/files.txt
@@ -25,7 +25,7 @@ When you use a :class:`~django.db.models.FileField` or
:class:`~django.db.models.ImageField`, Django provides a set of APIs you can use
to deal with that file.
-Consider the following model, using a ``FileField`` to store a photo::
+Consider the following model, using an ``ImageField`` to store a photo::
class Car(models.Model):
name = models.CharField(max_length=255)
@@ -111,7 +111,7 @@ useful -- you can use the global default storage system::
>>> default_storage.exists(path)
False
-See :ref:`ref-files-storage` for the file storage API.
+See :ref:`ref-files-storage` for the file storage API.
The built-in filesystem storage class
-------------------------------------