summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2013-06-15 12:02:25 +0200
committerClaude Paroz <claude@2xlibre.net>2013-06-15 12:02:25 +0200
commitbf9975b0eb5f839ac5ff53b4fb302548dde6a418 (patch)
tree3b29509104ed6ea95a3b9045f55dcb25bbeea7e1 /docs
parentbeb652e069d386fa6295dd235d7ba84a95e9d484 (diff)
Fixed #20606 -- Fixed 'for' example in template tag docs
Thanks batisteo for the report.
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 24eda2ce2c..d92ac602fc 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -371,7 +371,7 @@ displayed if the given array is empty or could not be found::
{% for athlete in athlete_list %}
<li>{{ athlete.name }}</li>
{% empty %}
- <li>Sorry, no athlete in this list!</li>
+ <li>Sorry, no athletes in this list.</li>
{% endfor %}
<ul>