From f8a277bc7f67d13fa41eb8569af9fe7446885ed0 Mon Sep 17 00:00:00 2001
From: Malcolm Tredinnick <malcolm.tredinnick@gmail.com>
Date: Sat, 15 Jul 2006 11:47:09 +0000
Subject: [PATCH] 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
---
 django/template/defaultfilters.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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