summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-07-05 02:34:37 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-07-05 02:34:37 +0000
commit31b61d57d593f6b10fcf055b529e086a72f647ff (patch)
tree6d2ec4fce807874bb19bc7984b75730ab1c885a4 /docs
parent58a68723b3389ec0d92f9372e213e6fc5d868708 (diff)
Fixed #7626 -- Fixed a typo in the newforms docs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7838 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/newforms.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/newforms.txt b/docs/newforms.txt
index 296fc04c85..20611249da 100644
--- a/docs/newforms.txt
+++ b/docs/newforms.txt
@@ -1345,7 +1345,7 @@ An ``UploadedFile`` object has two attributes:
The string representation of an ``UploadedFile`` is the same as the filename
attribute.
-When you use a ``FileField`` on a form, you must also remember to
+When you use a ``FileField`` in a form, you must also remember to
`bind the file data to the form`_.
.. _`bind the file data to the form`: `Binding uploaded files to a form`_
@@ -1412,7 +1412,7 @@ These control the range of values permitted in the field.
Using an ImageField requires that the `Python Imaging Library`_ is installed.
-When you use a ``FileField`` on a form, you must also remember to
+When you use an ``ImageField`` in a form, you must also remember to
`bind the file data to the form`_.
.. _Python Imaging Library: http://www.pythonware.com/products/pil/