Browse Source

Fixed #12958 -- Fixed typo I introduced in r12527. Thanks, mitchf.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12588 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Justin Bronn 15 years ago
parent
commit
c736cbe816
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/intro/tutorial03.txt

+ 1 - 1
docs/intro/tutorial03.txt

@@ -261,7 +261,7 @@ Put the following code in that template:
     {% if latest_poll_list %}
         <ul>
         {% for poll in latest_poll_list %}
-            <li><a href="/polls/{{ poll.id }}/">{{ poll.question }}</a><</li>
+            <li><a href="/polls/{{ poll.id }}/">{{ poll.question }}</a></li>
         {% endfor %}
         </ul>
     {% else %}