From bc56c76a1738522e0ffb9a1e7869f894df8dab5c Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sun, 26 Jun 2011 16:52:50 +0000 Subject: [PATCH] Fixed #16344 -- Fixed typo in render() docs. Thanks, Jure Cuhalev. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16465 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- 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 3a43fe12fb..aa45396ed7 100644 --- a/docs/topics/http/shortcuts.txt +++ b/docs/topics/http/shortcuts.txt @@ -76,7 +76,7 @@ MIME type ``application/xhtml+xml``:: This example is equivalent to:: from django.http import HttpResponse - from django.template import Context, loader + from django.template import RequestContext, loader def my_view(request): # View code here...