From 877df6719f08ebeca1c1c52b5b0e9dcd6f497820 Mon Sep 17 00:00:00 2001 From: Raymond <1412530+encryptix@users.noreply.github.com> Date: Fri, 15 Nov 2024 15:56:34 +0000 Subject: [PATCH] Correct dining_room spelling in templating attributes example (#35776) --- source/_docs/configuration/templating.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/configuration/templating.markdown b/source/_docs/configuration/templating.markdown index 61410ee8db5..3cda6becfd9 100644 --- a/source/_docs/configuration/templating.markdown +++ b/source/_docs/configuration/templating.markdown @@ -322,7 +322,7 @@ List of lights that are on with a brightness of 255: {% raw %} ```text -{{ ['light.kitchen', 'light.dinig_room'] | select('is_state', 'on') | select('is_state_attr', 'brightness', 255) | list }} +{{ ['light.kitchen', 'light.dining_room'] | select('is_state', 'on') | select('is_state_attr', 'brightness', 255) | list }} ``` {% endraw %}