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:
Malcolm Tredinnick 2006-07-15 11:47:09 +00:00
parent 6d104115d1
commit f8a277bc7f
1 changed files with 1 additions and 1 deletions

View File

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