Author: timo Date: 2011-01-18 17:25:38 -0600 (Tue, 18 Jan 2011) New Revision: 15242
Modified: django/trunk/docs/topics/http/middleware.txt Log: Fixed #15109 - typo in middleware docs; thanks colinsullivan for the report. Modified: django/trunk/docs/topics/http/middleware.txt =================================================================== --- django/trunk/docs/topics/http/middleware.txt 2011-01-18 16:55:00 UTC (rev 15241) +++ django/trunk/docs/topics/http/middleware.txt 2011-01-18 23:25:38 UTC (rev 15242) @@ -114,7 +114,7 @@ ``process_template_response()`` must return an :class:`~django.template.response.SimpleTemplateResponse` (or its subclass) object. It could alter the given ``response`` by changing -``response.template_name`` and ``response.template_context``, or it could +``response.template_name`` and ``response.context_data``, or it could create and return a brand-new :class:`~django.template.response.SimpleTemplateResponse` (or its subclass) instance. -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
