Browse Source

Refs #20122 -- Corrected documentation of pluralize template filter.

Tobias Kunze 5 years ago
parent
commit
e3968df527
2 changed files with 4 additions and 4 deletions
  1. 2 2
      django/template/defaultfilters.py
  2. 2 2
      docs/ref/templates/builtins.txt

+ 2 - 2
django/template/defaultfilters.py

@@ -851,8 +851,8 @@ def filesizeformat(bytes_):
 @register.filter(is_safe=False)
 def pluralize(value, arg='s'):
     """
-    Return a plural suffix if the value is not 1. By default, use 's' as the
-    suffix:
+    Return a plural suffix if the value is not 1, '1', or an object of
+    length 1. By default, use 's' as the suffix:
 
     * If value is 0, vote{{ value|pluralize }} display "votes".
     * If value is 1, vote{{ value|pluralize }} display "vote".

+ 2 - 2
docs/ref/templates/builtins.txt

@@ -1990,8 +1990,8 @@ If ``value`` is ``800-COLLECT``, the output will be ``800-2655328``.
 ``pluralize``
 -------------
 
-Returns a plural suffix if the value is not 1. By default, this suffix is
-``'s'``.
+Returns a plural suffix if the value is not ``1``, ``'1'``, or an object of
+length 1. By default, this suffix is ``'s'``.
 
 Example::