From a47fe6bf928eaedd93f5f4d2dbbad788b6d8cb59 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sun, 17 Nov 2019 23:58:02 +0100 Subject: [PATCH] fix copy switch example (#11214) The current example doesn't do anything. --- source/_integrations/switch.template.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_integrations/switch.template.markdown b/source/_integrations/switch.template.markdown index 050b3f2b16a..5ec723f4aee 100644 --- a/source/_integrations/switch.template.markdown +++ b/source/_integrations/switch.template.markdown @@ -104,11 +104,11 @@ switch: turn_on: service: switch.turn_on data: - entity_id: switch.source + entity_id: switch.target turn_off: service: switch.turn_off data: - entity_id: switch.source + entity_id: switch.target ``` {% endraw %}