From 8b085f223d788d987bc31de4273c4bc7db29199a Mon Sep 17 00:00:00 2001 From: edgimar Date: Sun, 19 Jul 2015 09:28:22 -0400 Subject: [PATCH] use current info in object table the line numbers and `events` attribute were out-of-date --- source/developers/creating_components.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/developers/creating_components.markdown b/source/developers/creating_components.markdown index 70620e861b3..ebbd4c85c60 100644 --- a/source/developers/creating_components.markdown +++ b/source/developers/creating_components.markdown @@ -56,9 +56,9 @@ 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 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). | +| 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#L589). | +| hass.bus | 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#L387). | +| 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#L738). | ### {% linkable_title Example on using the configuration parameter %} If your configuration file contains the following lines: