summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-03-03 11:07:04 -0800
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-03-03 11:07:04 -0800
commit2047865964e534646f7fe15165785bfbca892b9d (patch)
treea83b8e90fb765a5d11e457a01828c7ddab5fe45a
parente4bf0f2c367ca77266900af3461e1ec440c8689d (diff)
parentdf7668a9e47100bc2ac58a3b0fec4665d4aadb48 (diff)
Merge pull request #877 from tcarlander/master
Fixed #19971 -- Typo in CBV docs.
-rw-r--r--docs/topics/class-based-views/generic-display.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/class-based-views/generic-display.txt b/docs/topics/class-based-views/generic-display.txt
index 8695af7fe6..64b998770f 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.