From cf9c7cc55b75d53100430efc09582259db062b10 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 28 Jul 2017 23:41:50 -0700 Subject: [PATCH] Update code_review_component.markdown --- source/developers/code_review_component.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/developers/code_review_component.markdown b/source/developers/code_review_component.markdown index e3662e63791..b79c05e0bdd 100644 --- a/source/developers/code_review_component.markdown +++ b/source/developers/code_review_component.markdown @@ -37,4 +37,4 @@ REQUIREMENTS = [ ### {% linkable_title Component/platform communication %} 1. If you need to share global data with platforms, use the dictionary `hass.data`. `hass.data[DATA_XY]` while `XY` is the component is preferred over `hass.data[DOMAIN]`. - 2. If the component fetches data that causes related platform entities to update, + 2. If the component fetches data that causes it's related platform entities to update, you can notify them using the dispatcher code in `homeassistant.helpers.dispatcher`.