From df7668a9e47100bc2ac58a3b0fec4665d4aadb48 Mon Sep 17 00:00:00 2001 From: Tobias Carlander Date: Sun, 3 Mar 2013 22:34:10 +0400 Subject: [PATCH] Fix Typo explicitly. Fixes #19971 --- docs/topics/class-based-views/generic-display.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/class-based-views/generic-display.txt b/docs/topics/class-based-views/generic-display.txt index 8695af7fe65..64b998770f5 100644 --- a/docs/topics/class-based-views/generic-display.txt +++ b/docs/topics/class-based-views/generic-display.txt @@ -230,7 +230,7 @@ more:: get_context_data on the super class. When no two classes try to define the same key, this will give the expected results. However if any class attempts to override a key after parent classes have set it (after the call - to super), any children of that class will also need to explictly set it + to super), any children of that class will also need to explicitly set it after super if they want to be sure to override all parents. If you're having trouble, review the method resolution order of your view.