diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt index 4f0c3f66e7b8f..a87bf197478bb 100644 --- a/docs/topics/i18n/translation.txt +++ b/docs/topics/i18n/translation.txt @@ -204,7 +204,8 @@ For example:: page = ngettext( 'there is %(count)d object', 'there are %(count)d objects', - count) % { + count + ) % { 'count': count, } return HttpResponse(page)