From f45621b07ee10b56f2d3393f18ffe356d3441ac8 Mon Sep 17 00:00:00 2001 From: Will Rossiter Date: Fri, 10 May 2013 21:32:39 +1200 Subject: [PATCH] Fix typo in templates documentation --- docs/en/reference/templates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/reference/templates.md b/docs/en/reference/templates.md index 73d23fda2..67356261b 100644 --- a/docs/en/reference/templates.md +++ b/docs/en/reference/templates.md @@ -182,7 +182,7 @@ the markup in the `else` clause is used, if that clause is present. This example shows the use of `not` to negate the test. :::ss - <% if $not $DinnerInOven %> + <% if not $DinnerInOven %> I'm going out for dinner tonight. <% end_if %>