Update mismatched end tag for code example in section 'Loops'

This commit is contained in:
Anny 2018-08-25 11:21:25 -07:00 committed by GitHub
parent d5a6d6fb04
commit d6ae9a9637
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ Markup
{% for post in site.posts %}
<a href="{{ post.url }}">
<h2>{{ post.title }}</h2>
<p>{{ post.date | date_to_string }}</h2>
<p>{{ post.date | date_to_string }}</p>
</a>
{% endfor %}
```