From 8bb7ede382e6f2770ba73d1bd6ca1c05b106ee68 Mon Sep 17 00:00:00 2001 From: Alexandre GV Date: Wed, 1 Apr 2020 02:17:23 +0200 Subject: [PATCH] Fix typo in templates directives example --- _docs/070_templates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_docs/070_templates.md b/_docs/070_templates.md index 8ace2e9..af16606 100644 --- a/_docs/070_templates.md +++ b/_docs/070_templates.md @@ -93,7 +93,7 @@ directive as there is in Jinja. Here is an example. {% if yadm.os == "Darwin" %} This block is included for MacOS {% else %} -This block is included for for any other OS +This block is included for any other OS {% endif %} ```