From 9c93f053337221629f7e09cd9be82119cf8bbab4 Mon Sep 17 00:00:00 2001 From: Jeffrey Stone Date: Wed, 26 Jan 2022 08:56:14 -0500 Subject: [PATCH] Fixing Spelling errors... --- config/templates/speech/example.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/templates/speech/example.yaml b/config/templates/speech/example.yaml index 7e265b6..1e73e02 100644 --- a/config/templates/speech/example.yaml +++ b/config/templates/speech/example.yaml @@ -1,6 +1,6 @@ > {# Daily Briefing #} -{%- macro getGretting() -%} +{%- macro getGreeting() -%} {% if now().strftime('%H')|int < 12 %} Good morning. {% elif now().strftime('%H')|int >= 12 and now().strftime('%H')|int < 17 %} @@ -29,7 +29,7 @@ {# a macro to call all macros :) #} {%- macro mother_of_all_macros() -%} - {{ getGretting() }} + {{ getGreeting() }} {{ getDoorStatus()}} {%- endmacro -%}