summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Meers <simon@simonmeers.com>2011-05-13 00:48:30 +0000
committerSimon Meers <simon@simonmeers.com>2011-05-13 00:48:30 +0000
commitdf6e0314080afcd6a96c3769807991d52072b2a1 (patch)
treef201c04b9ea5630ca5731ea5597fe96b78b7f749 /docs
parentae3fec0da8eae3d8cce13ce55a3928360e2506ac (diff)
Fixed #16005 -- Error in blocktrans docs -- thanks bezidejni
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16218 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/i18n/internationalization.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/i18n/internationalization.txt b/docs/topics/i18n/internationalization.txt
index 9fd7662a9d..ff1c80122c 100644
--- a/docs/topics/i18n/internationalization.txt
+++ b/docs/topics/i18n/internationalization.txt
@@ -494,7 +494,7 @@ for use within the translation block. Examples::
If you need to bind more than one expression inside a ``blocktrans`` tag,
separate the pieces with ``and``::
- {% blocktrans with book_t=book|title author_t=author|title %}
+ {% blocktrans with book_t=book|title and author_t=author|title %}
This is {{ book_t }} by {{ author_t }}
{% endblocktrans %}