Author: russellm
Date: 2009-04-16 08:29:31 -0500 (Thu, 16 Apr 2009)
New Revision: 10571
Modified:
django/branches/releases/1.0.X/docs/topics/files.txt
Log:
[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.
Modified: django/branches/releases/1.0.X/docs/topics/files.txt
===================================================================
--- django/branches/releases/1.0.X/docs/topics/files.txt 2009-04-16
13:28:58 UTC (rev 10570)
+++ django/branches/releases/1.0.X/docs/topics/files.txt 2009-04-16
13:29:31 UTC (rev 10571)
@@ -25,7 +25,7 @@
: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 @@
>>> 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
-------------------------------------
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---