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) }} ```