Modified:
django/trunk/docs/ref/models/fields.txt
Log:
Fixed #10862 -- Clarified confusing documentation about ImageField height/width. Thanks, mw and timo
Modified: django/trunk/docs/ref/models/fields.txt
===================================================================
--- django/trunk/docs/ref/models/fields.txt 2010-01-10 17:22:30 UTC (rev 12161)
+++ django/trunk/docs/ref/models/fields.txt 2010-01-10 17:23:59 UTC (rev 12162)
@@ -653,8 +653,8 @@
image each time the model instance is saved.
In addition to the special attributes that are available for :class:`FileField`,
-an :class:`ImageField` also has ``File.height`` and ``File.width`` attributes.
-See :ref:`topics-files`.
+an :class:`ImageField` also has :attr:`~django.core.files.File.height` and
+:attr:`~django.core.files.File.width` attributes.
Requires the `Python Imaging Library`_.