From 0c8143d48e258eef70855fdbb90519e593cd7370 Mon Sep 17 00:00:00 2001 From: Matthias Kestenholz Date: Sun, 6 Dec 2020 12:01:14 +0100 Subject: [PATCH] Tweaked the indentation of a code example --- docs/topics/i18n/translation.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)