From ca1e67049913f530b094ef71a43144cd6030024b Mon Sep 17 00:00:00 2001 From: Julien Phalip Date: Mon, 12 Sep 2011 07:15:47 +0000 Subject: [PATCH] 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 --- docs/ref/forms/fields.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt index dbb10346fe2..54fdec6d380 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