Fix incorrect syntax (#4995)

Without quotes the example would not work.
This commit is contained in:
Philip Rosenberg-Watt 2018-03-23 11:29:38 -06:00 committed by Franck Nijhof
parent 6ea9c2d7a8
commit b4c71a2f54

View File

@ -102,7 +102,7 @@ When using `wait_template` within an automation `trigger.entity_id` is supported
{% raw %}
```yaml
- wait_template: "{{ is_state(trigger.entity_id, 'on') }}"
- wait_template: "{{ is_state('trigger.entity_id', 'on') }}"
```
{% endraw %}