From d009ffe436410f6935798d910b0e489d53411dfa Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 28 Feb 2013 06:59:35 -0500 Subject: [PATCH] Fixed #19937 - Typo in class-based views intro. --- docs/topics/class-based-views/intro.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/class-based-views/intro.txt b/docs/topics/class-based-views/intro.txt index 5868b6be03..11d1f84ffe 100644 --- a/docs/topics/class-based-views/intro.txt +++ b/docs/topics/class-based-views/intro.txt @@ -123,7 +123,7 @@ and methods in the subclass. So that if your parent class had an attribute You can override that in a subclass:: - class MorningGreetingView(MyView): + class MorningGreetingView(GreetingView): greeting = "Morning to ya" Another option is to configure class attributes as keyword arguments to the