From b6b197370a6e79b185f94497ed0daa3f3cbc43ee Mon Sep 17 00:00:00 2001 From: Thomas J Leach Date: Mon, 16 Dec 2024 11:11:50 -0500 Subject: [PATCH] Fix typo in integration_setup_failures.md (#2504) --- docs/integration_setup_failures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integration_setup_failures.md b/docs/integration_setup_failures.md index 3a274f6e..7e5213cb 100644 --- a/docs/integration_setup_failures.md +++ b/docs/integration_setup_failures.md @@ -22,7 +22,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: raise ConfigEntryNotReady(f"Timeout while connecting to {device.ipaddr}") from ex ``` -If you are using a [DataUpdateCoordinator](integration_fetching_data#coordinated-single-api-poll-for-data-for-all-entities), calling `await coordinator.async_config_entry_first_refresh()` will also trigger this exception automaticlly if the first refresh failed. +If you are using a [DataUpdateCoordinator](integration_fetching_data#coordinated-single-api-poll-for-data-for-all-entities), calling `await coordinator.async_config_entry_first_refresh()` will also trigger this exception automatically if the first refresh failed. If your integration supports discovery, Home Assistant will automatically retry as soon as your device or service gets discovered.