From 9a84f0eb8a0466311e85b6eba5f753567f7459cd Mon Sep 17 00:00:00 2001 From: Brian Steere Date: Mon, 5 Dec 2022 03:16:33 -0600 Subject: [PATCH] fix: typo in templating docs (#25125) --- 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 42c67a81e19..52d84e2bb47 100644 --- a/source/_docs/configuration/templating.markdown +++ b/source/_docs/configuration/templating.markdown @@ -115,7 +115,7 @@ Entities that are on: {% raw %} ```text -{{ ['light.kitchen', 'light.dinig_room'] | select('is_state', 'on') | list }} +{{ ['light.kitchen', 'light.dining_room'] | select('is_state', 'on') | list }} ``` {% endraw %}