summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-11-15 07:09:46 -0500
committerTim Graham <timograham@gmail.com>2013-11-15 07:09:46 -0500
commit6e9e6ca0712cf1d2d0874ea5c8b63140804605a5 (patch)
treedeb7c542669acafe948a88ac800f055186488d90 /docs
parent8e6d1b97921dd3ead6afd5eb39fcd2c82244e106 (diff)
Fixed #21440 -- Typo in topics/http/shortcuts.txt
Thanks olof.bjarnason at gmail.com for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/http/shortcuts.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt
index 6a99a4b406..0db1276a4b 100644
--- a/docs/topics/http/shortcuts.txt
+++ b/docs/topics/http/shortcuts.txt
@@ -85,7 +85,7 @@ This example is equivalent to::
def my_view(request):
# View code here...
- t = loader.get_template('myapp/template.html')
+ t = loader.get_template('myapp/index.html')
c = RequestContext(request, {'foo': 'bar'})
return HttpResponse(t.render(c),
content_type="application/xhtml+xml")