diff options
| author | Tim Graham <timograham@gmail.com> | 2013-11-15 10:21:58 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-11-15 10:21:58 -0500 |
| commit | d011714002d4d8d73440149f24aa86142caf886f (patch) | |
| tree | c82c49f6760275d5ec042c3847610ba170ea9516 /docs | |
| parent | 7e0ebd74c107e3267b1df438ed7f061f8be5cf05 (diff) | |
Fixed #21440 -- Typo #2 in topics/http/shortcuts.txt
Thanks alasdair.
Diffstat (limited to 'docs')
| -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 0db1276a4b..1e10278b04 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") |
