Commit b41540f1 authored by Tim Graham's avatar Tim Graham
Browse files

[1.5.x] Fixed #21440 -- Typo #2 in topics/http/shortcuts.txt

Thanks alasdair.

Backport of d0117140 from master
parent 47b6a7c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -152,7 +152,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")