From 6bf8e60b208441e890e8ffeb894c3c80ef67ef9e Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 10 Apr 2021 08:37:30 -1000 Subject: [PATCH] Fix wording error in DataUpdateCoordinator code comments (#881) --- docs/integration_fetching_data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integration_fetching_data.md b/docs/integration_fetching_data.md index 03bc9c99..05ce6cb3 100644 --- a/docs/integration_fetching_data.md +++ b/docs/integration_fetching_data.md @@ -65,7 +65,7 @@ async def async_setup_entry(hass, entry, async_add_entities): async with async_timeout.timeout(10): return await api.fetch_data() except ApiAuthError as err: - # Raising ConfigEntryAuthFailed with cancel future updates + # Raising ConfigEntryAuthFailed will cancel future updates # and start a config flow with SOURCE_REAUTH (async_step_reauth) raise ConfigEntryAuthFailed from err except ApiError as err: