From 7379bf64ed5151b4b6719ed4a1a103d2e4908b6d Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Wed, 23 Oct 2024 11:41:37 -0400 Subject: [PATCH] Fix typo in templates docs This fixes a minor typo in the parameters to ngettext in the templates docs --- docs/templates.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/templates.rst b/docs/templates.rst index 2471cea39..920c9e53d 100644 --- a/docs/templates.rst +++ b/docs/templates.rst @@ -1778,7 +1778,7 @@ It's possible to translate strings in expressions with these functions: - ``_(message)``: Alias for ``gettext``. - ``gettext(message)``: Translate a message. -- ``ngettext(singluar, plural, n)``: Translate a singular or plural +- ``ngettext(singular, plural, n)``: Translate a singular or plural message based on a count variable. - ``pgettext(context, message)``: Like ``gettext()``, but picks the translation based on the context string.