diff --git a/docs/topics/class-based-views.txt b/docs/topics/class-based-views.txt
index 2612ffe..eb3ae15 100644
|
a
|
b
|
Decorating the class
|
| 585 | 585 | -------------------- |
| 586 | 586 | |
| 587 | 587 | To decorate every instance of a class-based view, you need to decorate |
| 588 | | the class definition itself. To do this you apply the decorator to one |
| 589 | | of the view-like methods on the class; that is, |
| 590 | | :meth:`~django.views.generic.base.View.dispatch`, or one of the HTTP |
| 591 | | methods (:meth:`~django.views.generic.base.View.get`, |
| 592 | | :meth:`~django.views.generic.base.View.post` etc). |
| | 588 | the class definition itself. To do this you apply the decorator to the |
| | 589 | dispatch method: :meth:`~django.views.generic.base.View.dispatch`. |
| 593 | 590 | |
| 594 | 591 | A method on a class isn't quite the same as a standalone function, so |
| 595 | 592 | you can't just apply a function decorator to the method -- you need to |