From 89277c7f6e19c51bd8da91e5ed09845a1df17c9d Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sat, 18 Jun 2011 11:58:50 +0000 Subject: [PATCH] Fixed another typo in the docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16434 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- 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 1e226840d6..421b1ecf73 100644 --- a/docs/howto/custom-template-tags.txt +++ b/docs/howto/custom-template-tags.txt @@ -691,7 +691,7 @@ on :ref:`inclusion tags`. If you need to rename your tag, you can provide a custom name for it:: - register.simple_tags(lambda x: x - 1, name='minusone') + register.simple_tag(lambda x: x - 1, name='minusone') @register.simple_tag(name='minustwo') def some_function(value):