summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-05-31 14:26:44 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-05-31 14:26:44 +0000
commit3c4e261931dbf9758c8e1ddab59376137d613fcb (patch)
tree26cad2fcb016409aef43cb2a1f028c1f7e243bdb /docs
parenteb74800b31b145f2580006f25282c78f54cf490f (diff)
Fixed #2046 -- Typo in tutorial03.txt. Thanks, asmodai
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3016 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorial03.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial03.txt b/docs/tutorial03.txt
index f368d54c53..ecfc658021 100644
--- a/docs/tutorial03.txt
+++ b/docs/tutorial03.txt
@@ -209,7 +209,7 @@ So let's use Django's template system to separate the design from Python::
})
return HttpResponse(t.render(c))
-That code loads the template called "polls/index" and passes it a context. The
+That code loads the template called "polls/index.html" and passes it a context. The
context is a dictionary mapping template variable names to Python objects.
Reload the page. Now you'll see an error::