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: