From e3f34b1f091435c84b93460d3ff12c7b38631a29 Mon Sep 17 00:00:00 2001 From: dr-rompecabezas Date: Mon, 7 Feb 2022 10:59:33 -0500 Subject: [PATCH] Fixed typo in django/contrib/humanize/templatetags/humanize.py comment. --- django/contrib/humanize/templatetags/humanize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/humanize/templatetags/humanize.py b/django/contrib/humanize/templatetags/humanize.py index 07bb70b186..02c731331b 100644 --- a/django/contrib/humanize/templatetags/humanize.py +++ b/django/contrib/humanize/templatetags/humanize.py @@ -41,7 +41,7 @@ def ordinal(value): pgettext("ordinal 1", "{}st"), # Translators: Ordinal format when value ends with 2, e.g. 82nd, except 12. pgettext("ordinal 2", "{}nd"), - # Translators: Ordinal format when value ends with 3, e.g. 83th, except 13. + # Translators: Ordinal format when value ends with 3, e.g. 83rd, except 13. pgettext("ordinal 3", "{}rd"), # Translators: Ordinal format when value ends with 4, e.g. 84th. pgettext("ordinal 4", "{}th"),