Commit 6e9e6ca0 authored by Tim Graham's avatar Tim Graham
Browse files

Fixed #21440 -- Typo in topics/http/shortcuts.txt

Thanks olof.bjarnason at gmail.com for the report.
parent 8e6d1b97
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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")