diff --git a/docs/ref/forms/api.txt b/docs/ref/forms/api.txt
index c313eb5..513000b 100644
a
|
b
|
when printed::
|
645 | 645 | >>> str(f['subject'].errors) |
646 | 646 | '' |
647 | 647 | |
| 648 | .. versionadded:: 1.2 |
| 649 | |
| 650 | If the field is required or contain errors, and you've set any or both of the |
| 651 | ``error_css_class`` and ``required_css_class`` attributes; you can access a |
| 652 | string of CSS-classes for the field by calling its ``css_classes`` method. |
| 653 | |
648 | 654 | .. _binding-uploaded-files: |
649 | 655 | |
650 | 656 | Binding uploaded files to a form |