Fixed typo in django/contrib/humanize/templatetags/humanize.py comment.

This commit is contained in:
dr-rompecabezas 2022-02-07 10:59:33 -05:00 committed by Mariusz Felisiak
parent b9fee0f849
commit e3f34b1f09
1 changed files with 1 additions and 1 deletions

View File

@ -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"),