Kaydet (Commit) e4b48a8b authored tarafından Adrian Holovaty's avatar Adrian Holovaty

Fixed #1058 -- Fixed typo in wordwrap filter documentation. Thanks, kieranholland.com

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2471 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst e72a6b19
......@@ -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))
......
......@@ -1071,7 +1071,7 @@ wordwrap
Wraps words at specified line length.
**Argument:** number of words at which to wrap the text
**Argument:** number of characters at which to wrap the text
yesno
~~~~~
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment