From 889ffac590ea3e050eda6b51a44aad909ab21375 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 3 Apr 2015 07:15:04 -0400 Subject: [PATCH] Fix an incorrect end tag, thanks NPrescott --- template-engine/chapter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template-engine/chapter.md b/template-engine/chapter.md index 29c3350fb..b69b76a42 100644 --- a/template-engine/chapter.md +++ b/template-engine/chapter.md @@ -442,7 +442,7 @@ templite = Templite('''

Hello {{name|upper}}!

{% for topic in topics %}

You are interested in {{topic}}.

- {% endif %} + {% endfor %} ''', {'upper': str.upper}, )