1
0
mirror of https://github.com/django/django.git synced 2025-07-19 17:19:12 +00:00

[1.9.x] Fixed typo in docs/topics/class-based-views/mixins.txt

Backport of f43da05cc5c76102c04fd2e76b4bada880265dbe from master
This commit is contained in:
eltronix 2016-04-19 03:25:54 +03:00 committed by Tim Graham
parent 51400cbce8
commit f5b8e9b282

View File

@ -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`.