summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-03-09 07:05:49 -0400
committerTim Graham <timograham@gmail.com>2015-03-09 07:06:37 -0400
commitfba158bf8dd0cee2b4c21352e4899067f0b8bf19 (patch)
tree728b8a4626aa70555a87f01db2688ecc072ec5c2
parent8917684c736c445b7f4bfb7225b632cc3e5d400c (diff)
[1.7.x] Fixed typo in docs/howto/custom-template-tags.txt
Backport of 63f2dd4ad774d39fc7bbe05492d30efc45e4e7a9 from master
-rw-r--r--docs/howto/custom-template-tags.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/custom-template-tags.txt b/docs/howto/custom-template-tags.txt
index 8132634ba3..00bf7b1807 100644
--- a/docs/howto/custom-template-tags.txt
+++ b/docs/howto/custom-template-tags.txt
@@ -290,7 +290,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.