diff options
| author | Timo Graham <timograham@gmail.com> | 2011-01-18 23:25:38 +0000 |
|---|---|---|
| committer | Timo Graham <timograham@gmail.com> | 2011-01-18 23:25:38 +0000 |
| commit | 457aaca7fa99d3630b3fabd1bedd4bbad4242f83 (patch) | |
| tree | eb5a50078c538d37a38f250cec2b5991e4478580 | |
| parent | b31a1b99261d05bf8a34495ee9faf4d6592b8b36 (diff) | |
Fixed #15109 - typo in middleware docs; thanks colinsullivan for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15242 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/topics/http/middleware.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/http/middleware.txt b/docs/topics/http/middleware.txt index 91e7afe2ba..56dda429d0 100644 --- a/docs/topics/http/middleware.txt +++ b/docs/topics/http/middleware.txt @@ -114,7 +114,7 @@ Django view. ``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. |
