diff --git a/docs/ref/class-based-views/mixins-single-object.txt b/docs/ref/class-based-views/mixins-single-object.txt
index 9a67e78..39f0516 100644
a
|
b
|
SingleObjectMixin
|
81 | 81 | |
82 | 82 | Returns context data for displaying the list of objects. |
83 | 83 | |
| 84 | The base implementation of this method requires that the ``object`` |
| 85 | attribute be set by the view (even if ``None``). Be sure to do this if |
| 86 | you are using this mixin without one of the built-in views that does so. |
| 87 | |
84 | 88 | .. method:: get_slug_field() |
85 | 89 | |
86 | 90 | Returns the name of a slug field to be used to look up by slug. By |