From 55d5f7ecf4a5deff75d9dd6f565583e4cb16fcd2 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 29 May 2008 11:42:55 +0000 Subject: [PATCH] Fixed #7301 -- Corrected minor typo in docstring. Thanks, micahcowan. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7557 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/template/defaulttags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/template/defaulttags.py b/django/template/defaulttags.py index e5a8e6620b..cf3b35b4cc 100644 --- a/django/template/defaulttags.py +++ b/django/template/defaulttags.py @@ -515,7 +515,7 @@ debug = register.tag(debug) #@register.tag(name="filter") def do_filter(parser, token): """ - Filters the contents of the blog through variable filters. + Filters the contents of the block through variable filters. Filters can also be piped through each other, and they can have arguments -- just like in variable syntax.