diff options
| author | Justin Bronn <jbronn@gmail.com> | 2010-02-24 22:11:49 +0000 |
|---|---|---|
| committer | Justin Bronn <jbronn@gmail.com> | 2010-02-24 22:11:49 +0000 |
| commit | c736cbe81645bcb0aa608ae3588edaf01f787806 (patch) | |
| tree | 7aa5dedcf0a973eccde650e969ae090244b8d53c /docs/intro/tutorial03.txt | |
| parent | 83e52e316225650467ebbee2d86eff7bd5b566e7 (diff) | |
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
Diffstat (limited to 'docs/intro/tutorial03.txt')
| -rw-r--r-- | docs/intro/tutorial03.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt index 9d97a094e6..0e09693778 100644 --- a/docs/intro/tutorial03.txt +++ b/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 %} |
