summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/i18n.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/i18n.txt b/docs/i18n.txt
index 6d6c939776..b137ddc74e 100644
--- a/docs/i18n.txt
+++ b/docs/i18n.txt
@@ -619,7 +619,7 @@ There even is a ``ngettext`` interface and a string interpolation function::
The ``interpolate`` function both supports positional interpolation and named interpolation.
So the above could have been written as::
- s = interpolate(ngettext('this is %s object', 'this are %s objects', 11), 11);
+ s = interpolate(ngettext('this is %s object', 'this are %s objects', 11), [11]);
The interpolation syntax is borrowed from Python. You shouldn't go over the top with
string interpolation, though: this is still JavaScript, so the code will have to do