Fixed a small typo in the wordwrap filter's docstring.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3353 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
6d104115d1
commit
f8a277bc7f
|
@ -133,7 +133,7 @@ def wordwrap(value, arg):
|
||||||
"""
|
"""
|
||||||
Wraps words at specified line length
|
Wraps words at specified line length
|
||||||
|
|
||||||
Argument: number of words to wrap the text at.
|
Argument: number of characters to wrap the text at.
|
||||||
"""
|
"""
|
||||||
from django.utils.text import wrap
|
from django.utils.text import wrap
|
||||||
return wrap(str(value), int(arg))
|
return wrap(str(value), int(arg))
|
||||||
|
|
Loading…
Reference in New Issue