summaryrefslogtreecommitdiff
path: root/docs/topics/class-based-views
diff options
context:
space:
mode:
authoreltronix <lt.eltronix@gmail.com>2016-04-19 03:25:54 +0300
committerTim Graham <timograham@gmail.com>2016-04-18 20:25:54 -0400
commitf43da05cc5c76102c04fd2e76b4bada880265dbe (patch)
tree2ad02f417141f4a93c7458accb24f635416c844c /docs/topics/class-based-views
parentd3c87a2425b30400c3e6ea76585a9a537b6d0386 (diff)
Fixed typo in docs/topics/class-based-views/mixins.txt
Diffstat (limited to 'docs/topics/class-based-views')
-rw-r--r--docs/topics/class-based-views/mixins.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/class-based-views/mixins.txt b/docs/topics/class-based-views/mixins.txt
index a5bb290d2b..8573c971be 100644
--- a/docs/topics/class-based-views/mixins.txt
+++ b/docs/topics/class-based-views/mixins.txt
@@ -400,7 +400,7 @@ To show what happens when you try to get more sophisticated, we show
an example that sacrifices readability and maintainability when there
is a simpler solution. First, let's look at a naive attempt to combine
:class:`~django.views.generic.detail.DetailView` with
-:class:`~django.views.generic.edit.FormMixin` to enable use to
+:class:`~django.views.generic.edit.FormMixin` to enable us to
``POST`` a Django :class:`~django.forms.Form` to the same URL as we're
displaying an object using :class:`DetailView`.