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