summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJulien Phalip <jphalip@gmail.com>2011-09-12 07:15:47 +0000
committerJulien Phalip <jphalip@gmail.com>2011-09-12 07:15:47 +0000
commitca1e67049913f530b094ef71a43144cd6030024b (patch)
tree8a702e00c314f382c828aad10744cab54756a046 /docs
parent4e47df9de20ab12070fcb92ef2176ece7847e5f5 (diff)
Fixed some improper quotes in the form fields reference doc.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16821 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/forms/fields.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt
index dbb10346fe..54fdec6d38 100644
--- a/docs/ref/forms/fields.txt
+++ b/docs/ref/forms/fields.txt
@@ -510,9 +510,9 @@ given length.
* Error message keys: ``required``, ``invalid``, ``missing``, ``empty``,
``max_length``
-Has two optional arguments for validation, ''max_length'' and
-''allow_empty_file''. If provided, these ensure that the file name is at
-most the given length, and that validation will succeed even if the file
+Has two optional arguments for validation, ``max_length`` and
+``allow_empty_file``. If provided, these ensure that the file name is at
+most the given length, and that validation will succeed even if the file
content is empty.
To learn more about the ``UploadedFile`` object, see the :doc:`file uploads