diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt
index 7657353..42006bb 100644
a
|
b
|
example::
|
300 | 300 | ... |
301 | 301 | |
302 | 302 | def clean(self): |
303 | | cleaned_data = self.cleaned_data |
| 303 | cleaned_data = super(ContactForm, self).clean() |
304 | 304 | cc_myself = cleaned_data.get("cc_myself") |
305 | 305 | subject = cleaned_data.get("subject") |
306 | 306 | |
… |
… |
example::
|
316 | 316 | In this code, if the validation error is raised, the form will display an |
317 | 317 | error message at the top of the form (normally) describing the problem. |
318 | 318 | |
| 319 | Note that the call to ``super(ContactForm, self).clean()`` in the example code |
| 320 | ensures that any validation logic in parent classes is maintained. |
| 321 | |
319 | 322 | The second approach might involve assigning the error message to one of the |
320 | 323 | fields. In this case, let's assign an error message to both the "subject" and |
321 | 324 | "cc_myself" rows in the form display. Be careful when doing this in practice, |
… |
… |
sample) looks like this::
|
329 | 332 | ... |
330 | 333 | |
331 | 334 | def clean(self): |
332 | | cleaned_data = self.cleaned_data |
| 335 | cleaned_data = super(ContactForm, self).clean() |
333 | 336 | cc_myself = cleaned_data.get("cc_myself") |
334 | 337 | subject = cleaned_data.get("subject") |
335 | 338 | |