diff options
| author | Tim Graham <timograham@gmail.com> | 2013-11-15 07:09:46 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-11-15 07:11:12 -0500 |
| commit | 47b6a7c354871892949916018fabe780c7006103 (patch) | |
| tree | 98f5151461c23636127ab7e542d5a0e85d084725 | |
| parent | 16e5fdd9cb8cca4d203b9255a9771b3c370e37d6 (diff) | |
[1.5.x] Fixed #21440 -- Typo in topics/http/shortcuts.txt
Thanks olof.bjarnason at gmail.com for the report.
Backport of 6e9e6ca071 from master
| -rw-r--r-- | docs/topics/http/shortcuts.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt index 0467c36cc4..694e11865f 100644 --- a/docs/topics/http/shortcuts.txt +++ b/docs/topics/http/shortcuts.txt @@ -81,7 +81,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") |
