summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2006-07-15 11:47:09 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2006-07-15 11:47:09 +0000
commitf8a277bc7f67d13fa41eb8569af9fe7446885ed0 (patch)
tree43dfa33337bbccc2af50b49a9325e0eab9d456e3
parent6d104115d1e1e57acd4e9105bca6bdb8b5983230 (diff)
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
-rw-r--r--django/template/defaultfilters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/template/defaultfilters.py b/django/template/defaultfilters.py
index 5d56ec0c49..bd9f55b1e9 100644
--- a/django/template/defaultfilters.py
+++ b/django/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 to wrap the text at.
"""
from django.utils.text import wrap
return wrap(str(value), int(arg))