From 33eecfa7405ea997669f8edb61c596c3f295c793 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Tue, 19 Nov 2019 10:08:32 +0100 Subject: [PATCH] Fixed #30999 -- 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 977e00b4a3..c745c9e54b 100644 --- a/docs/howto/custom-template-tags.txt +++ b/docs/howto/custom-template-tags.txt @@ -892,7 +892,7 @@ Registering the tag ------------------- Finally, register the tag with your module's ``Library`` instance, as explained -in :ref:`writing custom template filters` +in :ref:`writing custom template tags` above. Example:: register.tag('current_time', do_current_time)