From f2b5e9d5bbfced68c02f50ebb15a7adf70bca36e Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 15 Nov 2013 07:09:46 -0500 Subject: [PATCH] [1.6.x] Fixed #21440 -- Typo in topics/http/shortcuts.txt Thanks olof.bjarnason at gmail.com for the report. Backport of 6e9e6ca071 from master --- docs/topics/http/shortcuts.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt index a6670531da5..51326e945cd 100644 --- a/docs/topics/http/shortcuts.txt +++ b/docs/topics/http/shortcuts.txt @@ -82,7 +82,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")