diff --git a/docs/ref/contrib/admin/admindocs.txt b/docs/ref/contrib/admin/admindocs.txt
index b3e26ec..394d078 100644
a
|
b
|
Model reference
|
57 | 57 | =============== |
58 | 58 | |
59 | 59 | The **models** section of the ``admindocs`` page describes each model in the |
60 | | system along with all the fields and methods available on it. Relationships to |
61 | | other models appear as hyperlinks. Descriptions are pulled from ``help_text`` |
62 | | attributes on fields or from docstrings on model methods. |
| 60 | system along with all the fields and methods (without any arguments) available |
| 61 | on it. While model properties don't have any arguments, they are not listed. |
| 62 | Relationships to other models appear as hyperlinks. Descriptions are pulled |
| 63 | from ``help_text`` attributes on fields or from docstrings on model methods. |
63 | 64 | |
64 | 65 | A model with useful documentation might look like this:: |
65 | 66 | |