Author: russellm Date: 2010-12-07 08:59:57 -0600 (Tue, 07 Dec 2010) New Revision: 14851
Modified: django/trunk/docs/topics/http/middleware.txt Log: Corrected typo in middleware docs. Thanks to matt_c for the report. Modified: django/trunk/docs/topics/http/middleware.txt =================================================================== --- django/trunk/docs/topics/http/middleware.txt 2010-12-07 13:57:01 UTC (rev 14850) +++ django/trunk/docs/topics/http/middleware.txt 2010-12-07 14:59:57 UTC (rev 14851) @@ -112,11 +112,11 @@ Django view. ``process_template_response()`` must return an -:class:`~django.template.response.SimpleTemplateResponse` (or it's subclass) +: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 create and return a brand-new -:class:`~django.template.response.SimpleTemplateResponse` (or it's subclass) +:class:`~django.template.response.SimpleTemplateResponse` (or its subclass) instance. ``process_template_response()`` will only be called if the response -- 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.
