Skip to content

Commit

Permalink
Fixed #10779 -- Corrected description of an example in the files docs…
Browse files Browse the repository at this point in the history
…. Thanks to timo for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10567 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Apr 16, 2009
1 parent 565c190 commit 9103a9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/topics/files.txt
Expand Up @@ -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)
Expand Down Expand Up @@ -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
-------------------------------------
Expand Down

0 comments on commit 9103a9b

Please sign in to comment.