From 98266ce57f4807a3598e7f5adcc6a10a17fb0b01 Mon Sep 17 00:00:00 2001 From: Trygve Vea Date: Sun, 12 May 2019 00:39:40 +0200 Subject: [PATCH] Correct comment in script yaml. (#9437) --- source/_docs/scripts.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/scripts.markdown b/source/_docs/scripts.markdown index fccdd277509..e77ed5d4c17 100644 --- a/source/_docs/scripts.markdown +++ b/source/_docs/scripts.markdown @@ -135,7 +135,7 @@ You can also get the script to abort after the timeout by using `continue_on_tim {% raw %} ```yaml -# Wait until a valve is < 10 or continue after 1 minute. +# Wait until a valve is < 10 or abort after 1 minute. - wait_template: "{{ states.climate.kitchen.attributes.valve|int < 10 }}" timeout: '00:01:00' continue_on_timeout: 'false'