From 26e8e53cf455a74964307aa742c5a979975e33bc Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 18 Oct 2010 20:29:53 +0000 Subject: [PATCH] Fixed #14490 -- fixed a typo in the docs. Thanks to gremmie for the report and fix. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14262 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/class-based-views.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/class-based-views.txt b/docs/topics/class-based-views.txt index 6552921675..eccf69927d 100644 --- a/docs/topics/class-based-views.txt +++ b/docs/topics/class-based-views.txt @@ -476,7 +476,7 @@ specifically designed for rendering content to a HTML response using a template. However, you can write your own mixins that perform different rendering behavior. -For example, you a simple JSON mixin might look something like this:: +For example, a simple JSON mixin might look something like this:: class JSONResponseMixin(object): def render_to_response(self, context):