diff --git a/docs/ref/class-based-views/mixins-editing.txt b/docs/ref/class-based-views/mixins-editing.txt
index 0bfbcbd..5175047 100644
a
|
b
|
FormMixin
|
87 | 87 | |
88 | 88 | Renders a response, providing the invalid form as context. |
89 | 89 | |
90 | | .. method:: get_context_data(**kwargs) |
91 | | |
92 | | Populates a context containing the contents of ``kwargs``. |
93 | | |
94 | | **Context** |
95 | | |
96 | | * ``form``: The form instance that was generated for the view. |
97 | | |
98 | | .. note:: |
99 | | |
100 | | Views mixing ``FormMixin`` must provide an implementation of |
101 | | :meth:`form_valid` and :meth:`form_invalid`. |
102 | | |
103 | | |
104 | 90 | ModelFormMixin |
105 | 91 | -------------- |
106 | 92 | |