Fixed a typo in 115 release notes 'shorthand notation for template conditions' section (#14540)

This commit is contained in:
Shane Qi 2020-09-18 05:06:23 -05:00 committed by GitHub
parent 11a8cb2ab0
commit 4112b2ef60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -478,7 +478,7 @@ automations:
```yaml
- choose:
- condition: "{{ is_state('sensor.mode', 'on') and (state_attr('climate.room', 'temperature') | int) < 10 }}"
- conditions: "{{ is_state('sensor.mode', 'on') and (state_attr('climate.room', 'temperature') | int) < 10 }}"
sequence:
- ...
```