From 35320bc45f1e19685060ec5a3c5611f6a0b86a33 Mon Sep 17 00:00:00 2001 From: Jack A <96800557+wasteofusername@users.noreply.github.com> Date: Sun, 12 Feb 2023 11:32:59 -0500 Subject: [PATCH] Fix typo of 'dining' in Templating Documentation (#26215) --- 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 784de3b5f3f..72236982e9b 100644 --- a/source/_docs/configuration/templating.markdown +++ b/source/_docs/configuration/templating.markdown @@ -154,7 +154,7 @@ Other state examples: {{ states('sensor.expires') | as_datetime }} # Make a list of states -{{ ['light.kitchen', 'light.dinig_room'] | map('states') | list }} +{{ ['light.kitchen', 'light.dining_room'] | map('states') | list }} ``` {% endraw %}