summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2008-11-21 16:25:05 +0000
committerKaren Tracey <kmtracey@gmail.com>2008-11-21 16:25:05 +0000
commita5172c3e1f03e4c7f3d52d654381342a6995dfbc (patch)
tree625ff22c3dd6e439723c0c1eda2f6605371f916c /docs
parent380e31ddb7cbc56d738dd78f176d03e1c94c27a5 (diff)
Fixed #9618: Corrected an error in some example code in the forms documentation. Thanks matthijs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9517 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/forms/index.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt
index de1e430c1e..1298ac3987 100644
--- a/docs/topics/forms/index.txt
+++ b/docs/topics/forms/index.txt
@@ -244,7 +244,7 @@ over them::
{% if form.subject.errors %}
<ol>
- {% for error in form.message.errors %}
+ {% for error in form.subject.errors %}
<li><strong>{{ error|escape }}</strong></li>
{% endfor %}
</ol>