From 5b35e3679bd0e5be6a2c57827a2ab425e8aa1031 Mon Sep 17 00:00:00 2001 From: Ventilix <76244746+Ventilix@users.noreply.github.com> Date: Tue, 22 Dec 2020 14:59:59 +0100 Subject: [PATCH] There was 2 typos at the very bottom of the page (#15955) Co-authored-by: Franck Nijhof --- 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 79d4bde86c4..669968480b2 100644 --- a/source/_docs/configuration/templating.markdown +++ b/source/_docs/configuration/templating.markdown @@ -480,4 +480,4 @@ The default priority of operators is that the filter (`|`) has priority over eve ``` {% endraw %} -Would round `10` to 2 decimal places, then divide `states('sensor.temperature')` by that. +Would round `10` to 2 decimal places, then divide `states('sensor.temperature')` by `10` (rounded to 2 decimal places so 10.00). This behavior is maybe not the one expected, but priority rules imply that.