diff options
| author | eltronix <lt.eltronix@gmail.com> | 2016-04-19 03:25:54 +0300 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-18 20:25:54 -0400 |
| commit | f43da05cc5c76102c04fd2e76b4bada880265dbe (patch) | |
| tree | 2ad02f417141f4a93c7458accb24f635416c844c /docs/topics/class-based-views | |
| parent | d3c87a2425b30400c3e6ea76585a9a537b6d0386 (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.txt | 2 |
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`. |
