From c31252fc75fd29291e4592c9a08e8583e421f28d Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Tue, 19 Nov 2019 10:08:32 +0100 Subject: [PATCH] [2.2.x] Fixed #30999 -- Fixed typo in docs/howto/custom-template-tags.txt. Backport of 33eecfa7405ea997669f8edb61c596c3f295c793 from master --- 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 c311607af7..24a2e59f1c 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)