From d6ae9a96371ef34065b559963aaa98636d5b6604 Mon Sep 17 00:00:00 2001 From: Anny Date: Sat, 25 Aug 2018 11:21:25 -0700 Subject: [PATCH] Update mismatched end tag for code example in section 'Loops' --- jekyll.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jekyll.md b/jekyll.md index e400bafc3..55355e5ab 100644 --- a/jekyll.md +++ b/jekyll.md @@ -139,7 +139,7 @@ Markup {% for post in site.posts %}

{{ post.title }}

-

{{ post.date | date_to_string }} +

{{ post.date | date_to_string }}

{% endfor %} ```