From 1669a438a9137a91865a70be288a522e7543d265 Mon Sep 17 00:00:00 2001 From: glts <676c7473@gmail.com> Date: Fri, 8 Nov 2013 23:20:50 +0100 Subject: [PATCH] [1.5.x] Added missing parameter in npgettext_lazy docs Backport of 413307fe35 from master --- docs/ref/utils.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt index 0ef0a838bfa..2c4529adcd3 100644 --- a/docs/ref/utils.txt +++ b/docs/ref/utils.txt @@ -840,7 +840,7 @@ For a complete discussion on the usage of the following see the .. function:: ngettext_lazy(singular, plural, number) .. function:: ungettext_lazy(singular, plural, number) -.. function:: npgettext_lazy(singular, plural, number) +.. function:: npgettext_lazy(context, singular, plural, number) Same as the non-lazy versions above, but using lazy execution.