From bd39ded944992f789755feb1be4f4176e554c225 Mon Sep 17 00:00:00 2001 From: Robert Chmielowiec Date: Mon, 4 May 2020 00:11:36 +0200 Subject: [PATCH] fix typo in integration_fetching_data.md (#494) --- 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 fa9c7233..0da48197 100644 --- a/docs/integration_fetching_data.md +++ b/docs/integration_fetching_data.md @@ -127,7 +127,7 @@ class MyEntity(entity.Entity): ## Separate polling for each individual entity -Some APIs will offer an endpoint per device. It sometimes won't be possible to map a device from your API to a single entity. If you create multiple entities from a single API device endpoint, please see the preivous section. +Some APIs will offer an endpoint per device. It sometimes won't be possible to map a device from your API to a single entity. If you create multiple entities from a single API device endpoint, please see the previous section. If you can map exactly one device endpoint to a single entity, you can fetch the data for this entity inside the `update()`/`async_update()` methods. Make sure polling is set to `True` and Home Assistant will call this method regularly.