From 351c42edcb2d6bd967d11188d12173b8403873b7 Mon Sep 17 00:00:00 2001 From: Petr <5851137+pvyleta@users.noreply.github.com> Date: Mon, 13 May 2024 12:24:13 +0200 Subject: [PATCH] Fixed broken link in dev_101_hass.md (#2168) --- docs/dev_101_hass.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev_101_hass.md b/docs/dev_101_hass.md index 42b71460..8d7bbe18 100644 --- a/docs/dev_101_hass.md +++ b/docs/dev_101_hass.md @@ -15,7 +15,7 @@ The Home Assistant instance contains four objects to help you interact with the | `hass.config` | This is the core configuration of Home Assistant exposing location, temperature preferences and config directory path. [See available methods.](https://dev-docs.home-assistant.io/en/dev/api/core.html#homeassistant.core.Config) | `hass.states` | This is the StateMachine. It allows you to set states and track when they are changed. [See available methods.](https://developers.home-assistant.io/docs/dev_101_states) | | `hass.bus` | This is the EventBus. It allows you to trigger and listen for events. [See available methods.](https://developers.home-assistant.io/docs/dev_101_events) | -| `hass.services` | This is the ServiceRegistry. It allows you to register services. [See available methods.](https://dev-docs.home-assistant.io/en/dev/api/core.html#homeassistant.core.ServiceRegistry) | +| `hass.services` | This is the ServiceRegistry. It allows you to register services. [See available methods.](https://developers.home-assistant.io/docs/dev_101_services) |