From d011714002d4d8d73440149f24aa86142caf886f Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 15 Nov 2013 10:21:58 -0500 Subject: [PATCH] Fixed #21440 -- Typo #2 in topics/http/shortcuts.txt Thanks alasdair. --- 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 0db1276a4bd..1e10278b046 100644 --- a/docs/topics/http/shortcuts.txt +++ b/docs/topics/http/shortcuts.txt @@ -167,7 +167,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 = Context({'foo': 'bar'}) return HttpResponse(t.render(c), content_type="application/xhtml+xml")