From ec85730925fdcd744fb738a5bf7fddd6fd6dc397 Mon Sep 17 00:00:00 2001 From: Jerold Albertson Date: Tue, 4 Oct 2016 15:59:56 -0600 Subject: [PATCH] Fixed a small type. :) (#1126) whem -> when --- source/_cookbook/python_component_simple_alarm.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_cookbook/python_component_simple_alarm.markdown b/source/_cookbook/python_component_simple_alarm.markdown index 33f0d79132a..2ac645b46c3 100644 --- a/source/_cookbook/python_component_simple_alarm.markdown +++ b/source/_cookbook/python_component_simple_alarm.markdown @@ -43,11 +43,11 @@ DOMAIN = "simple_alarm" DEPENDENCIES = ['group', 'device_tracker', 'light'] -# Attribute to tell which light has to flash whem a known person comes home +# Attribute to tell which light has to flash when a known person comes home # If omitted will flash all. CONF_KNOWN_LIGHT = "known_light" -# Attribute to tell which light has to flash whem an unknown person comes home +# Attribute to tell which light has to flash when an unknown person comes home # If omitted will flash all. CONF_UNKNOWN_LIGHT = "unknown_light"