From efc84dfec1b24b9879e12735d53fdc438477af51 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 2 Mar 2017 08:43:34 -0800 Subject: [PATCH] Update asyncio_working_with_async.markdown --- source/developers/asyncio_working_with_async.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/developers/asyncio_working_with_async.markdown b/source/developers/asyncio_working_with_async.markdown index 1ae52aeff24..4936a0c0647 100644 --- a/source/developers/asyncio_working_with_async.markdown +++ b/source/developers/asyncio_working_with_async.markdown @@ -56,7 +56,7 @@ def async_setup_platform(hass, config, async_add_entities, # Setup your platform inside of the event loop ``` -The only difference with the original parameters is that the add_entities function has been replaced by the coroutine `async_add_entities`. +The only difference with the original parameters is that the add_entities function has been replaced by the async friendly callback `async_add_entities`. ## {% linkable_title Implementing an async entity %}