summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-05-16 09:56:30 -0400
committerTim Graham <timograham@gmail.com>2013-05-16 09:56:30 -0400
commit289afc3156356a60bb7d2dcb7084add0aa03b2df (patch)
tree426b7b195f776623df736a5088429a079b8eb0f5 /docs
parent9ef4d177d1d501be44b6e1c87197fef1e26900f1 (diff)
Fixed #20421 - Typo in class-based view docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/class-based-views/base.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/class-based-views/base.txt b/docs/ref/class-based-views/base.txt
index 3ba7c38c43..ee0bf0f225 100644
--- a/docs/ref/class-based-views/base.txt
+++ b/docs/ref/class-based-views/base.txt
@@ -9,7 +9,7 @@ required for projects, in which case there are Mixins and Generic class-based
views.
Many of Django's built-in class-based views inherit from other class-based
-views or various mixins. Because this inheritence chain is very important, the
+views or various mixins. Because this inheritance chain is very important, the
ancestor classes are documented under the section title of **Ancestors (MRO)**.
MRO is an acronym for Method Resolution Order.