diff options
| author | Tobias Kunze <r@rixx.de> | 2019-04-27 18:08:39 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-05-03 11:35:19 +0200 |
| commit | e3968df527c4d378677f4784fb1bc0c86950fcf8 (patch) | |
| tree | 2c005e5c324e3f44bf0d6db9c209e5302e6aef17 /docs | |
| parent | a9b8898242cf2579ca5727ecab516ab761bce488 (diff) | |
Refs #20122 -- Corrected documentation of pluralize template filter.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/templates/builtins.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index cd5476fd6f..b004f9b34f 100644 --- a/docs/ref/templates/builtins.txt +++ b/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:: |
