From 44c67d3ba1a413a6fbb6967d0d033b1a837348c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Ma=C4=87kowski?= Date: Wed, 30 Apr 2025 18:15:21 +0200 Subject: [PATCH] chore: fix tiny wording error in "Calling functions" docs --- book/src/template_syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/template_syntax.md b/book/src/template_syntax.md index c5fb35f9..2a46ee1d 100644 --- a/book/src/template_syntax.md +++ b/book/src/template_syntax.md @@ -308,7 +308,7 @@ struct MyTemplate { ## Calling functions If you only provide a function name, askama will assume it's a method. If -you want to call a method, you will need to use a path instead: +you want to call a function, you will need to use a path instead: ```jinja {# This is the equivalent of `self.method()`. #}