From 9a16f903d3f0db643ef022d3f5e1051dbfe52ee6 Mon Sep 17 00:00:00 2001 From: Kamahat Date: Mon, 31 May 2021 14:24:21 +0200 Subject: [PATCH] typo : add dash to alias" in notification example (#18022) --- source/_integrations/updater.markdown | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/source/_integrations/updater.markdown b/source/_integrations/updater.markdown index 93c70067736..78443a5485b 100644 --- a/source/_integrations/updater.markdown +++ b/source/_integrations/updater.markdown @@ -32,16 +32,16 @@ For an added bonus, an automation integration can be created to send a message w ```yaml # Example configuration.yaml entry automation: - alias: "Update Available Notification" - trigger: - - platform: state - entity_id: binary_sensor.updater - from: "off" - to: "on" - action: - - service: notify.notify - data: - message: "Home Assistant {{ state_attr('binary_sensor.updater', 'newest_version') }} is available." + - alias: "Update Available Notification" + trigger: + - platform: state + entity_id: binary_sensor.updater + from: "off" + to: "on" + action: + - service: notify.notify + data: + message: "Home Assistant {{ state_attr('binary_sensor.updater', 'newest_version') }} is available." ``` {% endraw %}