From f5f6f9a98abb656d471cef43b791e3c027927ebd 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 d23d13a..8e2c725 100644 --- a/_docs/070_templates.md +++ b/_docs/070_templates.md @@ -96,7 +96,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 %} ```