From f0ba276fd6192f1d0878c2be5e61eaa5ff1b5e6c Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Thu, 9 Oct 2008 09:21:22 +0000 Subject: [PATCH] [1.0.X] Fixed #9325 -- Typo fix in the forms documentation. Backport of r9215 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9216 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/forms/index.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt index 220ab0fdc0..b4c57bc8bd 100644 --- a/docs/topics/forms/index.txt +++ b/docs/topics/forms/index.txt @@ -253,9 +253,9 @@ over them:: Looping over the form's fields ------------------------------ -If you're the same HTML for each of your form fields, you can -reduce duplicate code by looping through each field in turn using -a ``{% for %}`` loop:: +If you're using the same HTML for each of your form fields, you can reduce +duplicate code by looping through each field in turn using a ``{% for %}`` +loop::
{% for field in form %}