summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-12-03 05:50:46 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-12-03 05:50:46 +0000
commit4bdbd1401d4001fef2f6a4ba960da24700e19157 (patch)
tree58ee03b682ce6883258529057cfc2c5bbc23f8bf /docs
parent94f4348728c03ca0e1aca0da619020c313985821 (diff)
Fixed #9735 -- Documentation typo fix.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9558 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/templates/builtins.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index f67f1a86cd..b088fa63f0 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -254,7 +254,7 @@ The above is equivalent to -- but shorter, cleaner, and possibly faster
than -- the following::
<ul>
- {% if althete_list %}
+ {% if athlete_list %}
{% for athlete in athlete_list %}
<li>{{ athlete.name }}</li>
{% endfor %}