From 6e9e6ca0712cf1d2d0874ea5c8b63140804605a5 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 15 Nov 2013 07:09:46 -0500 Subject: [PATCH] Fixed #21440 -- Typo in topics/http/shortcuts.txt Thanks olof.bjarnason at gmail.com for the report. --- 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 6a99a4b4065..0db1276a4bd 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")