From 89ee1acc5292dfabbb278d498683398b60f5ac8a Mon Sep 17 00:00:00 2001 From: Marius <33354141+Mariusthvdb@users.noreply.github.com> Date: Tue, 12 Oct 2021 12:37:24 +0200 Subject: [PATCH] change curret to current (#19731) --- 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 3d5f52d9457..34b7ce86ed7 100644 --- a/source/_docs/configuration/templating.markdown +++ b/source/_docs/configuration/templating.markdown @@ -288,7 +288,7 @@ The same thing can also be expressed as a filter: {% raw %} ```yaml - # 77 minutes before curret time. + # 77 minutes before current time. {{ now() - timedelta( hours = 1, minutes = 17 ) }} ```