From 9d13b6ec28dbe7f060f97436fb379935637ddc44 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 22 Dec 2008 04:18:00 +0000 Subject: [PATCH] Changed some ReST formatting of headers (in forms/validation.txt). git-svn-id: http://code.djangoproject.com/svn/django/trunk@9666 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/forms/validation.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt index 3ad9ce956e3..3cfd6e0bfb5 100644 --- a/docs/ref/forms/validation.txt +++ b/docs/ref/forms/validation.txt @@ -90,7 +90,7 @@ already know which fields have passed their individual validation requirements. .. _described later: Form subclasses and modifying field errors -========================================== +------------------------------------------ Sometimes, in a form's ``clean()`` method, you will want to add an error message to a particular field in the form. This won't always be appropriate @@ -134,7 +134,7 @@ There is an example of modifying ``self._errors`` in the following section. explanation makes you feel more comfortable. The result is the same. Using validation in practice -============================= +---------------------------- The previous sections explained how validation works in general for forms. Since it can sometimes be easier to put things into place by seeing each