From 344fb9c8b4f0da2450c40e1b733109b4a954e683 Mon Sep 17 00:00:00 2001 From: clach04 Date: Sat, 9 Jul 2016 00:35:55 -0700 Subject: [PATCH] Fix typos in demo switch doc strings (#2480) --- homeassistant/components/switch/demo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/switch/demo.py b/homeassistant/components/switch/demo.py index fad7b5dfaf1..afbbabab06e 100644 --- a/homeassistant/components/switch/demo.py +++ b/homeassistant/components/switch/demo.py @@ -18,10 +18,10 @@ def setup_platform(hass, config, add_devices_callback, discovery_info=None): class DemoSwitch(SwitchDevice): - """represenation of a demo switch.""" + """representation of a demo switch.""" def __init__(self, name, state, icon, assumed): - """Initialize the Deom switch.""" + """Initialize the Demo switch.""" self._name = name or DEVICE_DEFAULT_NAME self._state = state self._icon = icon