From 9b5b5be3c6ba8c7eda1ecd44d192d3a18fee3031 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Ma=C4=87kowski?= Date: Tue, 13 Aug 2024 17:45:15 +0100 Subject: [PATCH] book: fix typo in Template Syntax page The semicolon in `{% let entity = entity; %}` causes the template compilation to fail, so this commit removes it. --- 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 54c77cd6..84dd4331 100644 --- a/book/src/template_syntax.md +++ b/book/src/template_syntax.md @@ -883,6 +883,6 @@ that `entity` was a field of the current type unlike usual. You can go around this limitation by binding your field's value into a variable: ```jinja -{% let entity = entity; %} +{% let entity = entity %} {{ test_macro!(entity) }} ```