summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2008-10-26 03:10:13 +0000
committerJames Bennett <ubernostrum@gmail.com>2008-10-26 03:10:13 +0000
commit0503442d2caf3e26f732e7b87b524e922d293788 (patch)
treea81110baf40fd25af5babdf89cbd9090105e3a33 /docs
parent2d40c75acf1c3247139a1248e5f7ba4e5211ccee (diff)
downloaddjango-0503442d2caf3e26f732e7b87b524e922d293788.tar.gz
Minor typo correction from [9279].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9280 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/templates.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/templates.txt b/docs/topics/templates.txt
index 27efb2e78d..1c8b63c61e 100644
--- a/docs/topics/templates.txt
+++ b/docs/topics/templates.txt
@@ -443,8 +443,8 @@ To avoid this problem, you have two options:
* Two, you can take advantage of Django's automatic HTML escaping. The
remainder of this section describes how auto-escaping works.
-By default in the Django, every template automatically escapes the
-output of every variable tag. Specifically, these five characters are
+By default in Django, every template automatically escapes the output
+of every variable tag. Specifically, these five characters are
escaped:
* ``<`` is converted to ``&lt;``