From 63f2dd4ad774d39fc7bbe05492d30efc45e4e7a9 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 9 Mar 2015 07:05:49 -0400 Subject: [PATCH] Fixed typo in docs/howto/custom-template-tags.txt --- docs/howto/custom-template-tags.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/custom-template-tags.txt b/docs/howto/custom-template-tags.txt index ada206f55e..7bf698ae23 100644 --- a/docs/howto/custom-template-tags.txt +++ b/docs/howto/custom-template-tags.txt @@ -272,7 +272,7 @@ Template filter code falls into one of two situations: Be careful, though. You need to do more than just mark the output as safe. You need to ensure it really *is* safe, and what you do depends on - whether auto-escaping is in effect. The idea is to write filters than + whether auto-escaping is in effect. The idea is to write filters that can operate in templates where auto-escaping is either on or off in order to make things easier for your template authors.