From 5b670502312a62ad5004e8deec6a2c911b2affe5 Mon Sep 17 00:00:00 2001 From: gjbadros Date: Mon, 29 Jul 2019 11:10:24 -0700 Subject: [PATCH] Corrected an example (#10005) This example is trying to draw a distinction but has two identical lines. I suspect this came from a search and replace to switch to the newer states('') notation. --- 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 018c7a5bedc..042c19a0c3a 100644 --- a/source/_docs/configuration/templating.markdown +++ b/source/_docs/configuration/templating.markdown @@ -74,7 +74,7 @@ The next two statements result in the same value if the state exists. The second {% raw %} ```text {{ states('device_tracker.paulus') }} -{{ states('device_tracker.paulus') }} +{{ states.device_tracker.paulus }} ``` {% endraw %}