summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-09 09:19:47 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-09 09:19:47 +0000
commit0b7b74432a19b31107f333ce7fc1ff6ca4a6ed76 (patch)
treee76199aecebfe4d2cc489c36569e5357002f7c18 /docs
parent27d4f5b84cde458e0ebb1f5c1e02bccf988db7cf (diff)
Fixed #9325 -- Typo fix in the forms documentation.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9215 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/forms/index.txt6
1 files 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::
<form action="/contact/" method="POST">
{% for field in form %}