From cab30085c5987cb4cd21bc4e8135a52de86df064 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Mon, 2 Oct 2023 15:57:04 +0200 Subject: [PATCH] Fix typo in config.py (#101268) --- homeassistant/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/config.py b/homeassistant/config.py index 7c3bd2e7bfe..6a0425f971e 100644 --- a/homeassistant/config.py +++ b/homeassistant/config.py @@ -385,7 +385,7 @@ def _write_default_config(config_dir: str) -> bool: async def async_hass_config_yaml(hass: HomeAssistant) -> dict: """Load YAML from a Home Assistant configuration file. - This function allow a component inside the asyncio loop to reload its + This function allows a component inside the asyncio loop to reload its configuration by itself. Include package merge. """ secrets = Secrets(Path(hass.config.config_dir))