From 73751c9ebb0ac1b37a77f2f4f1108491637e9f4b Mon Sep 17 00:00:00 2001 From: Dave T <17680170+davet2001@users.noreply.github.com> Date: Sun, 27 Sep 2020 12:03:52 +0100 Subject: [PATCH] Correct typos in config flow developer docs (#653) --- docs/config_entries_config_flow_handler.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/config_entries_config_flow_handler.md b/docs/config_entries_config_flow_handler.md index d4c5eb20..1818ee4d 100644 --- a/docs/config_entries_config_flow_handler.md +++ b/docs/config_entries_config_flow_handler.md @@ -69,7 +69,7 @@ self._abort_if_unique_id_configured() By setting a unique ID, users will have the option to ignore the discovery of your config entry. That way, they won't be bothered about it anymore. If the integration uses HomeKit, Zeroconf/mDNS or SSDP/uPnP to be discovered, supplying a unique ID is required. -If a unique ID isn't available, alternatively, the `zerconf`, `homekit`, `ssdp` and `discovery` steps can be omitted, even if they are configured in +If a unique ID isn't available, alternatively, the `zeroconf`, `homekit`, `ssdp` and `discovery` steps can be omitted, even if they are configured in the integration manifest. In that case, the `user` step will be called when the item is discovered. Alternatively, if an integration can't get a unique ID all the time (e.g., multiple devices, some have one, some don't), a helper is available @@ -83,7 +83,7 @@ await self._async_handle_discovery_without_unique_id() ### Unignoring -Your configuration flow can add support to re-discovered the previously ignored entry by implementing the unignore step in the config flow. +Your configuration flow can add support to re-discover the previously ignored entry by implementing the unignore step in the config flow. ```python async def async_step_unignore(self, user_input):