summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-01-16 21:44:10 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-01-16 21:44:10 +0000
commit6f3f25e733b2ba9670ed9035934acc65a971231b (patch)
treede714a44df762e752fb57aebdba9040ce6b2f486 /docs
parentf1f2005c05061030711b6cf3a9418d1e5223907a (diff)
Fixed bug in spaceless template-tag documentation. Thanks, Esaj
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2014 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/templates.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/templates.txt b/docs/templates.txt
index 3dafb068c3..78e94c5b54 100644
--- a/docs/templates.txt
+++ b/docs/templates.txt
@@ -677,7 +677,7 @@ Example usage::
<p>
<a href="foo/">Foo</a>
</p>
- {% spaceless %}
+ {% endspaceless %}
This example would return this HTML::
@@ -690,7 +690,7 @@ this example, the space around ``Hello`` won't be stripped::
<strong>
Hello
</strong>
- {% spaceless %}
+ {% endspaceless %}
ssi
~~~