Fixed typo in docs/i18n.txt

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3439 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-07-24 02:52:52 +00:00
parent 0991cd004c
commit e5c40514fb
1 changed files with 1 additions and 1 deletions

View File

@ -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.