Merge pull request #133 from Kijewski/pr-typo-in-book

book: fix typo in Template Syntax page
This commit is contained in:
Guillaume Gomez 2024-08-13 19:41:23 +02:00 committed by GitHub
commit 72d0e2b250
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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