diff options
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/template/defaultfilters.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/template/defaultfilters.py b/django/core/template/defaultfilters.py index 73394ead67..b82d54a31c 100644 --- a/django/core/template/defaultfilters.py +++ b/django/core/template/defaultfilters.py @@ -133,7 +133,7 @@ def wordwrap(value, arg): """ Wraps words at specified line length - Argument: number of words to wrap the text at. + Argument: number of characters at which to wrap the text """ from django.utils.text import wrap return wrap(str(value), int(arg)) |
