From 95f4a0efbb6775cf3c632149c2c4613c35c160e0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 11 May 2015 08:29:05 +0200 Subject: [PATCH] fix typo --- source/developers/creating_components.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/developers/creating_components.markdown b/source/developers/creating_components.markdown index a260adf2fd9..70620e861b3 100644 --- a/source/developers/creating_components.markdown +++ b/source/developers/creating_components.markdown @@ -56,7 +56,7 @@ The Home Assistant object contains three objects to help you interact with the s | Object | Description | | ------ | ----------- | -| hass.states | This is the StateMachine. It allows you to set states and trach when they are changed. [See available methods](https://github.com/balloob/home-assistant/blob/master/homeassistant/__init__.py#L473). | +| hass.states | This is the StateMachine. It allows you to set states and track when they are changed. [See available methods](https://github.com/balloob/home-assistant/blob/master/homeassistant/__init__.py#L473). | | hass.events | This is the EventBus. It allows you to trigger and listen for events.
[See available methods](https://github.com/balloob/home-assistant/blob/master/homeassistant/__init__.py#L308). | | hass.services | This is the ServiceRegistry. It allows you to register services.
[See available methods](https://github.com/balloob/home-assistant/blob/master/homeassistant/__init__.py#L589). |