summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-07-24 02:52:52 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-07-24 02:52:52 +0000
commite5c40514fb6b19b06872fba72237a7f44e64303f (patch)
tree3e40d6163398353b80c7632d064636e3b5365c0f /docs
parent0991cd004c53895b5d34d03f6c3cbc9cbe43dc74 (diff)
Fixed typo in docs/i18n.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3439 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/i18n.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/i18n.txt b/docs/i18n.txt
index da6983dd59..e12900c2f9 100644
--- a/docs/i18n.txt
+++ b/docs/i18n.txt
@@ -235,7 +235,7 @@ To pluralize, specify both the singular and plural forms with the
``{% plural %}`` tag, which appears within ``{% blocktrans %}`` and
``{% endblocktrans %}``. Example::
- {% blocktrans count list|counted as counter %}
+ {% blocktrans count list|count as counter %}
There is only one {{ name }} object.
{% plural %}
There are {{ counter }} {{ name }} objects.