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