summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2008-06-16 03:38:43 +0000
committerAdrian Holovaty <adrian@holovaty.com>2008-06-16 03:38:43 +0000
commitfbeec87b62b7286fd31bde5e7756c1ba9b918109 (patch)
treebda5cdbc89e3cc54df65a05aefbf8b3c134dd446 /docs
parent1b92483ae5e4ebd93ba8616fb1b7cb55fc63868b (diff)
Fixed #6993 -- Fixed a grammar error in docs/templates.txt. Thanks, Ionut Ciocirlan
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7649 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/templates.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/templates.txt b/docs/templates.txt
index ea9f3fb6b2..3b2c03766b 100644
--- a/docs/templates.txt
+++ b/docs/templates.txt
@@ -819,7 +819,7 @@ The 'ifchanged' block tag is used within a loop. It has two possible uses.
2. If given a variable, check whether that variable has changed. For
example, the following shows the date every time it changes, but
- only shows the hour if both the hour and the date has changed::
+ only shows the hour if both the hour and the date have changed::
{% for date in days %}
{% ifchanged date.date %} {{ date.date }} {% endifchanged %}