From 4112b2ef606512c352a09df8e1e5802d8a2e1ebe Mon Sep 17 00:00:00 2001 From: Shane Qi Date: Fri, 18 Sep 2020 05:06:23 -0500 Subject: [PATCH] Fixed a typo in 115 release notes 'shorthand notation for template conditions' section (#14540) --- source/_posts/2020-09-17-release-115.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/2020-09-17-release-115.markdown b/source/_posts/2020-09-17-release-115.markdown index 044d54261d5..298df17cf99 100644 --- a/source/_posts/2020-09-17-release-115.markdown +++ b/source/_posts/2020-09-17-release-115.markdown @@ -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: - ... ```