From da4ab542a7233479a10f007b7af989717cb8b3d4 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 21 Dec 2014 22:21:32 -0800 Subject: [PATCH] Update documentation for example component --- config/custom_components/example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/custom_components/example.py b/config/custom_components/example.py index b47f2706f9e..ee422174377 100644 --- a/config/custom_components/example.py +++ b/config/custom_components/example.py @@ -36,7 +36,7 @@ _LOGGER = logging.getLogger(__name__) # pylint: disable=unused-argument def setup(hass, config): - """ Setup christmas. """ + """ Setup example component. """ # Validate that all required config options are given if not validate_config(config, {DOMAIN: [CONF_TARGET]}, _LOGGER):